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
|
1
|
When I compile, javac outputs:
I wish to suppress this warning. Trying -Xlint:none does not seem to help
|
||||||||
|
|
|
From what I can tell in the docs, you can't do it on the command-line. According to the Your best option would be to fix the use of deprecated APIs. However, an option would be to add the |
||
|
|
|
|
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. |
||
|
|
|
|
Two possible ways:
|
||||||
|