We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fa230a + 9b82d16 commit d0c26b5Copy full SHA for d0c26b5
src/main/java/org/scijava/annotations/IndexReader.java
@@ -73,6 +73,7 @@ class IndexReader {
73
74
public Object next() throws IOException {
75
int c = in.read();
76
+ while (Character.isWhitespace(c)) c = in.read();
77
if (c < 0) {
78
return null;
79
}
0 commit comments