Hi, I get the following message after the compile.... "Note: C:\Java\HelloJava.java uses or overrides a deprecated API. Note: Recompile with -deprecation for details. Tool completed successfully" Could anyone of you explain what this means??
Simon Xu
Ranch Hand
Joined: Aug 16, 2000
Posts: 235
posted
0
hi, you are using 1.1 version. go to java 1.2 specification to replace old methods. bye
Val Dra
Ranch Hand
Joined: Jan 26, 2001
Posts: 439
posted
0
it means that the method you are using in your program is been deprecated you can compile with the option javac -d yourStuff.java and it be no problem but for good reasons it's best you find out what method is depricated though the docs and repplace it with another method. It might not be supported in later versions of VM