Strange compiler message
I've just upgraded to 1.3.1 SDK on Windows 2000.
I now get very strange messages during the compile.
e.g. for the source :
/**
* The HelloWorldApp class implements an application that
* displays "Hello World!" to the standard output.
*/
public class HelloWorldApp {
public static void main(String[] args) {
// Display "Hello World!"
System.out.println("Hello World!");
}
}
the compiler displays :
javac HelloWorldApp.java
count = 0, total = 518
count = 0, total = 518
count = 0, total = 518
count = 0, total = 518
Why ? How can I get rid of these ?
Regards

