Skip to content

Commit d0c26b5

Browse files
committed
Merge pull request #129 from 4Quant/master
Addressing issue (#128) ...
2 parents 8fa230a + 9b82d16 commit d0c26b5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/scijava/annotations/IndexReader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class IndexReader {
7373

7474
public Object next() throws IOException {
7575
int c = in.read();
76+
while (Character.isWhitespace(c)) c = in.read();
7677
if (c < 0) {
7778
return null;
7879
}

0 commit comments

Comments
 (0)