assert canonicalize0(path).equalsIgnoreCase(res);

Please find a solution for this

I am trying to get documentation of java packages through command prompt. When i am specifying the particular package name in current directory and entering javadoc *.java

ie C:\j2sdk1.4.2_03\src\io javadoc *.java i am getting following error

java\io\Win32FileSystem.java:367: warning: as of release 1.4, assert is a keywor

d, and may not be used as an identifier

assert canonicalize0(path).equalsIgnoreCase(res);

^

java\io\Win32FileSystem.java:367: ';' expected

assert canonicalize0(path).equalsIgnoreCase(res);

^

Loading source file java\io\WinNTFileSystem.java...

Loading source file java\io\WriteAbortedException.java...

Loading source file java\io\Writer.java...

1 error

[796 byte] By [Sekhar9@a] at [2007-11-27 8:41:14]
# 1
First I'd try to compile the code. The compiler should give better diagnostics than javadoc.
jverda at 2007-7-12 20:40:06 > top of Java-index,Java Essentials,Java Programming...