Skip to content

Commit 8608abd

Browse files
committed
Fix a bug in ArrayParser class
1 parent f4a8655 commit 8608abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lbjava/src/main/java/edu/illinois/cs/cogcomp/lbjava/parse/ArrayParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public Object[] getExamples() {
5050
public Object next() {
5151
if (index >= examples.length)
5252
return null;
53-
return (Object[]) examples[index++];
53+
return examples[index++];
5454
}
5555

5656

0 commit comments

Comments
 (0)