--- old/src/java.base/share/classes/java/lang/AbstractStringBuilder.java 2018-09-28 11:28:21.945908797 +0700 +++ new/src/java.base/share/classes/java/lang/AbstractStringBuilder.java 2018-09-28 11:28:21.541908797 +0700 @@ -98,8 +98,8 @@ return 0; } - byte val1[] = value; - byte val2[] = another.value; + byte[] val1 = value; + byte[] val2 = another.value; int count1 = this.count; int count2 = another.count; @@ -677,7 +677,7 @@ * if {@code offset < 0} or {@code len < 0} * or {@code offset+len > str.length} */ - public AbstractStringBuilder append(char str[], int offset, int len) { + public AbstractStringBuilder append(char[] str, int offset, int len) { int end = offset + len; checkRange(offset, end, str.length); ensureCapacityInternal(count + len); @@ -1592,7 +1592,7 @@ * @param dstBegin the char index, not offset of byte[] * @param coder the coder of dst[] */ - void getBytes(byte dst[], int dstBegin, byte coder) { + void getBytes(byte[] dst, int dstBegin, byte coder) { if (this.coder == coder) { System.arraycopy(value, 0, dst, dstBegin << coder, count << coder); } else { // this.coder == LATIN && coder == UTF16