-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P5
-
Affects Version/s: 6
-
Component/s: tools
The output from -Xprint option is not correct:
$ cat > Test.java
class Test<A,B,C> {}
$ javac -Xprint Test.java
package unnamed package;
class Test<ABC> {
Test();
}
$
Notice that there are no commas between ABC.
$ cat > Test.java
class Test<A,B,C> {}
$ javac -Xprint Test.java
package unnamed package;
class Test<ABC> {
Test();
}
$
Notice that there are no commas between ABC.