Merge "Throw illegal argument exception in BinaryDictionary::editDistance" into jb-mr1-dev
commit
1fd10ea22c
|
@ -187,6 +187,9 @@ public final class BinaryDictionary extends Dictionary {
|
|||
}
|
||||
|
||||
public static int editDistance(String before, String after) {
|
||||
if (before == null || after == null) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
return editDistanceNative(before.toCharArray(), after.toCharArray());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue