mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 1fd10ea2
: Merge "Throw illegal argument exception in BinaryDictionary::editDistance" into jb-mr1-dev
* commit '1fd10ea22cb7ac8fb8182bdcb1fea594de9dcf2e': Throw illegal argument exception in BinaryDictionary::editDistance
This commit is contained in:
commit
e8825ce3e7
@ -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
Block a user