summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src/com/android/gallery3d/exif/ExifTag.java
diff options
context:
space:
mode:
authorEarl Ou <shunhsingou@google.com>2012-11-28 13:58:30 +0800
committerEarl Ou <shunhsingou@google.com>2012-11-30 15:33:35 +0800
commitc06c8045b159d68f8fda051d59a0eb82215067ee (patch)
treea8cd78057083a95aba93c7bfab9dab0609c6db46 /gallerycommon/src/com/android/gallery3d/exif/ExifTag.java
parent4523405aae7df882bf579cd0257335e3ba267258 (diff)
downloadandroid_packages_apps_Snap-c06c8045b159d68f8fda051d59a0eb82215067ee.tar.gz
android_packages_apps_Snap-c06c8045b159d68f8fda051d59a0eb82215067ee.tar.bz2
android_packages_apps_Snap-c06c8045b159d68f8fda051d59a0eb82215067ee.zip
ExifModifier
Change-Id: I001b24d8ba004a4080cd898f0d26d706b1839425
Diffstat (limited to 'gallerycommon/src/com/android/gallery3d/exif/ExifTag.java')
-rw-r--r--gallerycommon/src/com/android/gallery3d/exif/ExifTag.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/exif/ExifTag.java b/gallerycommon/src/com/android/gallery3d/exif/ExifTag.java
index cda67c2e2..753b18ce8 100644
--- a/gallerycommon/src/com/android/gallery3d/exif/ExifTag.java
+++ b/gallerycommon/src/com/android/gallery3d/exif/ExifTag.java
@@ -915,9 +915,9 @@ public class ExifTag {
static boolean isValidType(short type) {
return type == TYPE_UNSIGNED_BYTE || type == TYPE_ASCII ||
- type == TYPE_UNSIGNED_SHORT || type == TYPE_UNSIGNED_LONG ||
- type == TYPE_UNSIGNED_RATIONAL || type == TYPE_UNDEFINED ||
- type == TYPE_LONG || type == TYPE_RATIONAL;
+ type == TYPE_UNSIGNED_SHORT || type == TYPE_UNSIGNED_LONG ||
+ type == TYPE_UNSIGNED_RATIONAL || type == TYPE_UNDEFINED ||
+ type == TYPE_LONG || type == TYPE_RATIONAL;
}
ExifTag(short tagId, short type, int componentCount, int ifd) {