commit | 1d441dd06682d61e0b89b96989e039002a186b2a | [log] [tgz] |
---|---|---|
author | Jesse Wilson <jessewilson@google.com> | Wed Jul 20 13:41:57 2011 -0700 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Jul 20 13:41:57 2011 -0700 |
tree | 40eee934f831bcb5f3216ff406ac6e1aca8986a8 | |
parent | a7b6316bfff0526ae08271bee935b27d9445d2c1 [diff] | |
parent | 40c5ccfffe1aca40c8e6b9155ce2f9918b53701a [diff] |
Merge "Acknowledge that the platform guarantees UTF-8 and UTF-16."
diff --git a/location/java/com/android/internal/location/GpsNetInitiatedHandler.java b/location/java/com/android/internal/location/GpsNetInitiatedHandler.java index 29dec63..0adba06 100755 --- a/location/java/com/android/internal/location/GpsNetInitiatedHandler.java +++ b/location/java/com/android/internal/location/GpsNetInitiatedHandler.java
@@ -325,7 +325,7 @@ } catch (UnsupportedEncodingException e) { - Log.e(TAG, e.getMessage()); + throw new AssertionError(); } return decoded; } @@ -338,7 +338,7 @@ } catch (UnsupportedEncodingException e) { - Log.e(TAG, e.getMessage()); + throw new AssertionError(); } return decoded; }