From 40c5ccfffe1aca40c8e6b9155ce2f9918b53701a Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Tue, 19 Jul 2011 12:10:07 -0700 Subject: Acknowledge that the platform guarantees UTF-8 and UTF-16. These log statements were dead code. That isn't much of a problem, except that the 'e.getMessage()' that was being logged could be null, and that would cause a real problem. Change-Id: I8573bc687a7eda73782bd028e8ddc048a1954dc5 --- .../java/com/android/internal/location/GpsNetInitiatedHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'location/java/com/android') 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 @@ public class GpsNetInitiatedHandler { } catch (UnsupportedEncodingException e) { - Log.e(TAG, e.getMessage()); + throw new AssertionError(); } return decoded; } @@ -338,7 +338,7 @@ public class GpsNetInitiatedHandler { } catch (UnsupportedEncodingException e) { - Log.e(TAG, e.getMessage()); + throw new AssertionError(); } return decoded; } -- cgit v1.1