We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e72152 commit 64f6419Copy full SHA for 64f6419
src/main/java/org/scijava/io/handle/DataHandle.java
@@ -563,7 +563,7 @@ default double readDouble() throws IOException {
563
default String readLine() throws IOException {
564
// NB: Adapted from java.io.RandomAccessFile.readLine().
565
566
- final StringBuffer input = new StringBuffer();
+ final StringBuilder input = new StringBuilder();
567
int c = -1;
568
boolean eol = false;
569
0 commit comments