If my app will not break and will successfully deliver intended results (security/performance concerns non-withstanding) within the time I myself intend to support the application, what other problems can arise with using working, yet deprecated code?
|
closed as off topic by Jerry Coffin, skaffman, Filburt, Juhana, cHao Mar 16 '12 at 13:18
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Documentation. If you're hit by a bus and there's no documentation, there could be issues. |
|||
|
|
|
The standard meaning for "deprecated" has become "may be removed at some point, as there's a superior substitute." This implies the one problem that deprecated APIs can cause: you'll upgrade that library or platform, and find that your code doesn't compile anymore, as the deprecated API is now missing. You didn't say what world you're working in, but note that in all the years of Java's existence, no deprecated API has ever actually been removed for good. |
|||
|
|