aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-09-13 18:33:45 +0900
committerJean Chalard <jchalard@google.com>2012-09-14 16:59:18 +0900
commite94c2766909df750cc4937a9fd3275f1471ec96e (patch)
treebd4d63b82b6e9c6ebcca4004a3fb7cd2111afe95 /java/src
parent6f8dfd92b1b19eb3e3f3bfd2cd837c6b70b50c33 (diff)
downloadlatinime-e94c2766909df750cc4937a9fd3275f1471ec96e.tar.gz
latinime-e94c2766909df750cc4937a9fd3275f1471ec96e.tar.xz
latinime-e94c2766909df750cc4937a9fd3275f1471ec96e.zip
Simplification again (A5)
Change-Id: Id3ba200e06244e6d13cf57d346001d61f85ef1a2
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/StringUtils.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/StringUtils.java b/java/src/com/android/inputmethod/latin/StringUtils.java
index 1dfec7ee0..e38983fbd 100644
--- a/java/src/com/android/inputmethod/latin/StringUtils.java
+++ b/java/src/com/android/inputmethod/latin/StringUtils.java
@@ -218,8 +218,6 @@ public final class StringUtils {
* {@link #CAP_MODE_SENTENCES}.
*/
public static int getCapsMode(CharSequence cs, int reqModes) {
- int i;
- char c;
// Quick description of what we want to do:
// CAP_MODE_CHARACTERS is always on.
// CAP_MODE_WORDS is on if there is some whitespace before the cursor.
@@ -245,8 +243,9 @@ public final class StringUtils {
// it may look like a right parenthesis for example. We also include double quote and
// single quote since they aren't start punctuation in the unicode sense, but should still
// be skipped for English. TODO: does this depend on the language?
+ int i;
for (i = cs.length(); i > 0; i--) {
- c = cs.charAt(i - 1);
+ final char c = cs.charAt(i - 1);
if (c != '"' && c != '\'' && Character.getType(c) != Character.START_PUNCTUATION) {
break;
}
@@ -294,14 +293,14 @@ public final class StringUtils {
// it's wrong for German, it's wrong for Spanish, and possibly everything else.
// (note that American rules and British rules have nothing to do with en_US and en_GB,
// as both rules are used in both countries - it's merely a name for the set of rules)
- c = cs.charAt(j - 1);
+ final char c = cs.charAt(j - 1);
if (c != '"' && c != '\'' && Character.getType(c) != Character.END_PUNCTUATION) {
break;
}
}
if (j <= 0) return TextUtils.CAP_MODE_CHARACTERS & reqModes;
- c = cs.charAt(j - 1);
+ char c = cs.charAt(j - 1);
if (c == '.' || c == '?' || c == '!') {
// Here we found a marker for sentence end (we consider these to be one of
// either . or ? or ! only). So this is probably the end of a sentence, but if we