-
Enhancement
-
Resolution: Fixed
-
P4
-
5.0
-
None
-
beta
-
generic
-
generic
The implementations of java.io.ObjectInputStream and ObjectStreamClass use instances of java.lang.StringBuffer in a few places in which the instances are not exposed to multiple threads, so the the synchronization of StringBuffer is extraneous. To avoid unnecessary synchronization overhead, for what that's worth, those uses of StringBuffer should be changed to java.lang.StringBuilder instead.