Skip to content

Commit

Permalink
Fix unintentionally overloaded method name
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperka committed Jan 23, 2019
1 parent dc963a4 commit 6951d48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private FormIndex getRepeatPromptIndex(FormIndex repeatIndex) {
break;
}

formController.stepToNextEvent(FormEntryController.EVENT_PROMPT_NEW_REPEAT);
formController.stepToNextEventType(FormEntryController.EVENT_PROMPT_NEW_REPEAT);
testRef = getGroupRef(formController.getFormIndex()).toString(false);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public int stepToNextScreenEvent() throws JavaRosaException {
* Move the current form index to the next event of the given type
* (or the end if none is found).
*/
public int stepToNextEvent(int eventType) {
public int stepToNextEventType(int eventType) {
int event = getEvent();
do {
if (event == FormEntryController.EVENT_END_OF_FORM) {
Expand Down

0 comments on commit 6951d48

Please sign in to comment.