Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Fix typo in nativeDelete method
Browse files Browse the repository at this point in the history
  • Loading branch information
Robyer committed May 11, 2017
1 parent 56203ad commit bfe2bcf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ void Java_com_googlecode_tesseract_android_ResultIterator_nativeDelete(JNIEnv *e
if (resultIterator != 0) {
delete resultIterator;
}
return;
}

#ifdef __cplusplus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,5 @@ public void delete() {
private static native float nativeConfidence(long nativeResultIterator, int level);
private static native boolean nativeIsAtBeginningOf(long nativeResultIterator, int level);
private static native boolean nativeIsAtFinalElement(long nativeResultIterator, int level, int element);
private static native void nativeDelete(long nativeIterator);
private static native void nativeDelete(long nativeResultIterator);
}

0 comments on commit bfe2bcf

Please sign in to comment.