8143553: StringBuffer.getByte(byte[], int, byte) should be package private (not protected)

Reviewed-by: thartmann
This commit is contained in:
Xueming Shen 2015-11-23 10:36:15 -08:00
parent bcdeeca800
commit f9fa8afa11

View File

@ -730,7 +730,7 @@ import jdk.internal.HotSpotIntrinsicCandidate;
count = fields.get("count", 0); count = fields.get("count", 0);
} }
protected synchronized void getBytes(byte dst[], int dstBegin, byte coder) { synchronized void getBytes(byte dst[], int dstBegin, byte coder) {
super.getBytes(dst, dstBegin, coder); super.getBytes(dst, dstBegin, coder);
} }
} }