Scott Mitchell ca305d86fb PlatformDependent String char[] optimization
Motivation:
PlatformDependent0 has an optimization which grabs the char[] from a String. Since this code was introduced http://openjdk.java.net/jeps/254 has been gaining momentum in JDK 9. This JEP changes the internal storage from char[] to byte[], and thus the existing char[] only based optimizations will not work.

Modifications:
- The ASCII encoding char[] String optimizations should also work for byte[].

Result:
ASCII encoding char[] String optimizations don't break if the underlying storage in String is byte[].
2016-01-27 09:55:43 -08:00
..
2015-12-27 08:36:45 +01:00
2016-01-04 14:32:29 +01:00
2012-12-26 13:50:01 +09:00
2012-06-04 13:31:44 -07:00
2014-07-02 19:55:07 +09:00