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