Skip to content

Commit

Permalink
Fixed NPE on size method
Browse files Browse the repository at this point in the history
  • Loading branch information
elmer-garduno committed Jan 26, 2013
1 parent 093865b commit 9bf253d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/cmu/lti/oaqa/ecd/phase/BasePhase.java
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,6 @@ public String toString() {
}

int size() {
return options.length;
return optionDescriptions.length;
}
}

0 comments on commit 9bf253d

Please sign in to comment.