I am trying to change the deprecated methods. Can anyone please give me some guidance on how to do it or point me to some place where I can read about it ?
Rick Fortier
Ranch Hand
Joined: Jun 04, 2001
Posts: 147
posted
0
Originally posted by Vivian Richards: I am trying to change the deprecated methods. Can anyone please give me some guidance on how to do it or point me to some place where I can read about it ?
run the compiler: java -deprecation *.java oops, that is javac -deprecation *.java This will list what is deprecated. Then go to the API and read the comments in the old method and see if they recommend any replacement.
[This message has been edited by Rick Fortier (edited June 26, 2001).]