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

[701 byte] By [nzguru] at [2007-9-26 4:26:15]
# 1
Hey this is working perfectly fine on my machine.can u give me your path settings.
dinesh_singhal at 2007-6-29 17:35:06 > top of Java-index,Developer Tools,Java Compiler...
# 2

OK - after more investigation I found that although I had changed my PATH entry to point to the new \bin , I forgot to change the CLASSPATH entries for dt.jar and tools.jar which were pointing to the \lib directory of my previous SDK. Changing these to point to the 1.3.1 SDK cured the problem.

Thanks

nzguru at 2007-6-29 17:35:06 > top of Java-index,Developer Tools,Java Compiler...