-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P2
-
Affects Version/s: 5.0
-
Component/s: core-libs
-
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.