summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src/com/android/gallery3d/common
diff options
context:
space:
mode:
Diffstat (limited to 'gallerycommon/src/com/android/gallery3d/common')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/Utils.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/Utils.java b/gallerycommon/src/com/android/gallery3d/common/Utils.java
index efe2be213..78449ae6b 100644
--- a/gallerycommon/src/com/android/gallery3d/common/Utils.java
+++ b/gallerycommon/src/com/android/gallery3d/common/Utils.java
@@ -268,7 +268,6 @@ public class Utils {
try {
return Float.parseFloat(content);
} catch (NumberFormatException e) {
- Log.w(TAG, "invalid float: " + content, e);
return defaultValue;
}
}
@@ -278,7 +277,6 @@ public class Utils {
try {
return Integer.parseInt(content);
} catch (NumberFormatException e) {
- Log.w(TAG, "invalid int: " + content, e);
return defaultValue;
}
}