vote up 2 vote down star
1

When I compile, javac outputs:

Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.`

I wish to suppress this warning. Trying -Xlint:none does not seem to help

flag

80% accept rate
3  
Why avoid it? You should replace calls to deprecated APIs with solutions that don't use a deprecated API. – Joachim Sauer Oct 12 at 13:24
1  
because i'm compiling modules of other developers with many lines of code. trying to convince them all to go over the code and fix it is futile. – IttayD Oct 14 at 10:35

3 Answers

vote up 3 vote down check

From what I can tell in the docs, you can't do it on the command-line.

According to the javac documentation, -Xlint:none only disables warnings "not mandated by the Java Language Specification". It appears that warning you of the use of deprecated APIs is managed by the language spec.

Your best option would be to fix the use of deprecated APIs. However, an option would be to add the @SupressWarnings("deprecation") annotation to the classes or methods that are using the deprecated APIs.

link|flag
vote up 1 vote down

If it's a core Java API, there is almost certainly a replacement that will do what you want. Run the javac with that extra parameter, and then look at the API for the deprecated method and replace as appropriate.

link|flag
vote up 11 vote down

Two possible ways:

  1. don't use deprecated API
  2. Use @SuppressWarnings("deprecation")
link|flag
4  
1. don't use deprecated API; 2. think twice before using a deprecated API; 3. Use @SuppressWarnings("deprecation"). :) +1 – Bart K. Oct 12 at 13:27
I asked how to turn off the warning. Obviously I can avoid using deprecated API, but since the code base involves two teams, I cannot persuade them all to do that. – IttayD Oct 14 at 21:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.