diff options
Diffstat (limited to 'ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java')
-rw-r--r-- | ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java b/ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java index d34f203..f3ab28c 100644 --- a/ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java +++ b/ddms/libs/ddmlib/src/com/android/ddmlib/EmulatorConsole.java @@ -419,7 +419,7 @@ public final class EmulatorConsole { String value = m.group(1); // get the index from the list - status.voice = GsmMode.getEnum(value.toLowerCase()); + status.voice = GsmMode.getEnum(value.toLowerCase(Locale.US)); // move on to next line. continue; @@ -431,7 +431,7 @@ public final class EmulatorConsole { String value = m.group(1); // get the index from the list - status.data = GsmMode.getEnum(value.toLowerCase()); + status.data = GsmMode.getEnum(value.toLowerCase(Locale.US)); // move on to next line. continue; |