summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src/com/android/gallery3d/common
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-01-15 17:23:40 -0800
committerRuben Brunk <rubenbrunk@google.com>2013-01-15 17:27:03 -0800
commitec965b6ca57d3422e50bc1a476e0ff046f768ef5 (patch)
tree75606afb16a33aa925ffe305db58b24f76ecc671 /gallerycommon/src/com/android/gallery3d/common
parent9095cf465e3dc55d26cc4f4cc45dc60442868f14 (diff)
downloadandroid_packages_apps_Snap-ec965b6ca57d3422e50bc1a476e0ff046f768ef5.tar.gz
android_packages_apps_Snap-ec965b6ca57d3422e50bc1a476e0ff046f768ef5.tar.bz2
android_packages_apps_Snap-ec965b6ca57d3422e50bc1a476e0ff046f768ef5.zip
Fix exif data saving for picasa images.
Bug: 7910836 Change-Id: I8ec1a1ab379c35b0602689a8f7850f5c861e0189
Diffstat (limited to 'gallerycommon/src/com/android/gallery3d/common')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/Utils.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/Utils.java b/gallerycommon/src/com/android/gallery3d/common/Utils.java
index 3a68745c4..614a081c8 100644
--- a/gallerycommon/src/com/android/gallery3d/common/Utils.java
+++ b/gallerycommon/src/com/android/gallery3d/common/Utils.java
@@ -26,6 +26,7 @@ import android.text.TextUtils;
import android.util.Log;
import java.io.Closeable;
+import java.io.IOException;
import java.io.InterruptedIOException;
public class Utils {
@@ -173,8 +174,8 @@ public class Utils {
if (c == null) return;
try {
c.close();
- } catch (Throwable t) {
- Log.w(TAG, "close fail", t);
+ } catch (IOException t) {
+ Log.w(TAG, "close fail ", t);
}
}