File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/truffleruby/core/string Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 21
21
public final class TStringConstants {
22
22
public static final Map <String , TruffleString > TSTRING_CONSTANTS = new HashMap <>();
23
23
24
- public static final TruffleString EMPTY_BINARY = withHashCode ( TruffleString .Encoding .BYTES .getEmpty () );
25
- public static final TruffleString EMPTY_US_ASCII = withHashCode ( TruffleString .Encoding .US_ASCII .getEmpty () );
26
- public static final TruffleString EMPTY_UTF8 = withHashCode ( TruffleString .Encoding .UTF_8 .getEmpty () );
24
+ public static final TruffleString EMPTY_BINARY = TruffleString .Encoding .BYTES .getEmpty ();
25
+ public static final TruffleString EMPTY_US_ASCII = TruffleString .Encoding .US_ASCII .getEmpty ();
26
+ public static final TruffleString EMPTY_UTF8 = TruffleString .Encoding .UTF_8 .getEmpty ();
27
27
28
28
@ CompilationFinal (dimensions = 1 ) public static final byte [] EMPTY_BYTES = new byte [0 ];
29
29
@ CompilationFinal (dimensions = 1 ) public static final byte [] NEWLINE_BYTE_ARRAY = new byte []{ '\n' };
You can’t perform that action at this time.
0 commit comments