-
Bug
-
Resolution: Fixed
-
P2
-
5.0
-
b32
-
generic
-
generic
In file src/share/classes/sun/nio/cs/ext/PCK.java :
98 public boolean canEncode(char c) {
99 System.err.println("PCK can Enc");
100 return (c < '\u00FF'
101 || (encodeDouble(c) != 0)) ;
102 }
The call to System.err should be removed.
98 public boolean canEncode(char c) {
99 System.err.println("PCK can Enc");
100 return (c < '\u00FF'
101 || (encodeDouble(c) != 0)) ;
102 }
The call to System.err should be removed.