You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mstoodle
changed the title
Add missing compression checks in private String consturctor
Add missing compression checks in private String constructor
Jan 24, 2018
Remove unused String constructors accepting one integer
and returning an empty String with an appropriate capacity.
Closes: eclipse-openj9#777
Signed-off-by: Daniel Hong <[email protected]>
There seem to be missing compression checks in code that deals with
toUpper
andtoLower
. The call a privateString(I)
constructor seen inhttps://github.com/eclipse/openj9/blob/f15d63a353a71b651e3d866612e02d3d94426462/jcl/src/java.base/share/classes/java/lang/String.java#L1230-L1255
which creates a decompressed String by default. We need to rework this code and determine in which situations we can create compressed Strings.
The text was updated successfully, but these errors were encountered: