Skip to content

Commit d7543c5

Browse files
committed
Fix illegal javadoc characters
1 parent 7c36da3 commit d7543c5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main/java/at/favre/lib/bytes/MutableBytes.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public boolean isMutable() {
7373
*/
7474

7575
public MutableBytes overwrite(byte[] newArray) {
76-
7776
return overwrite(newArray, 0);
7877
}
7978

@@ -82,11 +81,10 @@ public MutableBytes overwrite(byte[] newArray) {
8281
*
8382
* @param newBytes used to overwrite internal
8483
* @return this instance
85-
* @throws IndexOutOfBoundsException if newArray.length > internal length
84+
* @throws IndexOutOfBoundsException if newArray.length > internal length
8685
*/
8786

8887
public MutableBytes overwrite(Bytes newBytes) {
89-
9088
return overwrite(newBytes, 0);
9189
}
9290

@@ -111,7 +109,7 @@ public MutableBytes overwrite(byte[] newArray, int offsetInternalArray) {
111109
* @param newBytes used to overwrite internal
112110
* @param offsetInternalArray index of the internal array to start overwriting
113111
* @return this instance
114-
* @throws IndexOutOfBoundsException if newBytes.length + offsetInternalArray > internal length
112+
* @throws IndexOutOfBoundsException if newBytes.length + offsetInternalArray > internal length
115113
*/
116114

117115
public MutableBytes overwrite(Bytes newBytes, int offsetInternalArray) {

0 commit comments

Comments
 (0)