-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.3.0
-
x86
-
windows_nt
Name: yyT116575 Date: 11/14/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
in javax.swing.UIDefaults::printArgs(Object[] array):
private String printArgs(Object[] array) {
String s = "{";
if (array !=null) {
for (int i = 0 ; i < array.length-1; i++) {
s = s.concat(array[i] + ",");
}
s = s.concat(array[array.length-1] + "}");
} else {
s.concat("}");
>>>>>>> is wrong; it should be: s = s.concat("}");
}
return s;
}
}
(Review ID: 112019)
======================================================================
- duplicates
-
JDK-4275705 swing.UIDefaults.ProxyLazyValue.createValue prints too much
-
- Resolved
-