mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8143553: StringBuffer.getByte(byte[], int, byte) should be package private (not protected)
Reviewed-by: thartmann
This commit is contained in:
parent
bcdeeca800
commit
f9fa8afa11
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue