Replace ternary with String.valueOf()

This commit is contained in:
Gary Gregory 2024-08-17 10:24:12 -04:00
parent 2dafdca160
commit 71062ea164
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ public final class ByteArrayBuilder {
@Override
public String toString() {
return this.buffer != null ? this.buffer.toString() : "null";
return String.valueOf(this.buffer);
}
}