We have an internal Java library, that for legacy reasons, needs to be compiled using Java 1.4. However, this lib has gone through several versions, the latter of which have had certain methods and objects deprecated. For client support reasons, the code needs to use some of these deprecated methods/objects. As such, we always keep the latest lib on the build path of our projects (in Eclipse).
I would like to
@SuppressWarnings("deprecation");
Though, do to the aforementioned 1.4 dependency, this is not possible.
Is there a way for me to remove the warnings, if only from my Eclipse Problems view, and somewhat cleanup my development environment?
Thanks, Cheers, Patrick