diff options
author | 2013-05-13 06:13:20 +0000 | |
---|---|---|
committer | 2013-05-13 06:13:20 +0000 | |
commit | ec83457d726679e81d0b0ec12c9e7a284464133e (patch) | |
tree | b3f4f3eb14cec38d0866aab3aa26246d95a25c7e /java/src/com/android/inputmethod/latin/StringUtils.java | |
parent | cb3bba3c4ee4652e12c81185ab9a648db20bb0dd (diff) | |
parent | d69fa0a09af7e9a524751dac1522c951abd92530 (diff) | |
download | latinime-ec83457d726679e81d0b0ec12c9e7a284464133e.tar.gz latinime-ec83457d726679e81d0b0ec12c9e7a284464133e.tar.xz latinime-ec83457d726679e81d0b0ec12c9e7a284464133e.zip |
Merge "Support multiple condition for getDeviceOverrideValue"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/StringUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/StringUtils.java | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/java/src/com/android/inputmethod/latin/StringUtils.java b/java/src/com/android/inputmethod/latin/StringUtils.java index 5ff101f7a..ab050d7a3 100644 --- a/java/src/com/android/inputmethod/latin/StringUtils.java +++ b/java/src/com/android/inputmethod/latin/StringUtils.java @@ -65,30 +65,6 @@ public final class StringUtils { } /** - * Find a value that has a specified key from an array of key-comma-value. - * - * @param key a key string to find. - * @param array an array of key-comma-value string to be searched. - * @return the value part of the first string that has a specified key. - * Returns null if it couldn't be found. - */ - public static String findValueOfKey(final String key, final String[] array) { - if (array == null) { - return null; - } - for (final String element : array) { - final int posComma = element.indexOf(','); - if (posComma < 0) { - throw new RuntimeException("Element has no comma: " + element); - } - if (element.substring(0, posComma).equals(key)) { - return element.substring(posComma + 1); - } - } - return null; - } - - /** * Remove duplicates from an array of strings. * * This method will always keep the first occurrence of all strings at their position |