| Author |
Problems with Compiling Generics.
|
Suresh Rajadurai
Ranch Hand
Joined: Feb 22, 2007
Posts: 58
|
|
Hi Folks, when I tried to compile the following code with javac test.java it gives the following message in the dos prompt: Note: test.java used unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Then when I compiled with the following command: javac -Xlint:unchecked test.java it gives the following error messages: javac: invalid flag: -xlint:unchecked Usage: javac <options> <sourcefiles> use -help for a list of possible options. Could you guys PLEASE throw me some light on this annoying messages PLEASE. Thanks & regards Suresh.
|
 |
Piet Verdriet
Ranch Hand
Joined: Feb 25, 2006
Posts: 266
|
|
Strange, when compiling your code like this: I get the following message: It looks like you compiled your source file with two different compilers... Anyway, you should replace your line: by: to make the warning disappear.
|
 |
Suresh Rajadurai
Ranch Hand
Joined: Feb 22, 2007
Posts: 58
|
|
|
Thank you.
|
 |
 |
|
|
subject: Problems with Compiling Generics.
|
|
|