< prev index next >

src/java.base/share/classes/sun/text/normalizer/ReplaceableString.java

Print this page

        

*** 108,118 **** * {@code start <= limit <= length()}. * @param dst the destination array. * @param dstStart the start offset in the destination array. * @stable ICU 2.0 */ ! public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { if (srcStart != srcLimit) { buf.getChars(srcStart, srcLimit, dst, dstStart); } } } --- 108,118 ---- * {@code start <= limit <= length()}. * @param dst the destination array. * @param dstStart the start offset in the destination array. * @stable ICU 2.0 */ ! public void getChars(int srcStart, int srcLimit, char[] dst, int dstStart) { if (srcStart != srcLimit) { buf.getChars(srcStart, srcLimit, dst, dstStart); } } }
< prev index next >