Spelling: aperture
Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/commit/17e739f6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/17e739f6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/17e739f6 Branch: refs/heads/master Commit: 17e739f68a7f81fc850fda72c27802338a492f25 Parents: 4f5515f Author: Josh Soref <jso...@rim.com> Authored: Mon Sep 10 14:53:21 2012 -0400 Committer: Simon MacDonald <simon.macdon...@gmail.com> Committed: Mon Sep 17 22:09:50 2012 -0400 ---------------------------------------------------------------------- framework/src/org/apache/cordova/ExifHelper.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/17e739f6/framework/src/org/apache/cordova/ExifHelper.java ---------------------------------------------------------------------- diff --git a/framework/src/org/apache/cordova/ExifHelper.java b/framework/src/org/apache/cordova/ExifHelper.java index 4be79f1..38ad0a6 100644 --- a/framework/src/org/apache/cordova/ExifHelper.java +++ b/framework/src/org/apache/cordova/ExifHelper.java @@ -23,7 +23,7 @@ import java.io.IOException; import android.media.ExifInterface; public class ExifHelper { - private String aperature = null; + private String aperture = null; private String datetime = null; private String exposureTime = null; private String flash = null; @@ -70,7 +70,7 @@ public class ExifHelper { * Reads all the EXIF data from the input file. */ public void readExifData() { - this.aperature = inFile.getAttribute(ExifInterface.TAG_APERTURE); + this.aperture = inFile.getAttribute(ExifInterface.TAG_APERTURE); this.datetime = inFile.getAttribute(ExifInterface.TAG_DATETIME); this.exposureTime = inFile.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); this.flash = inFile.getAttribute(ExifInterface.TAG_FLASH); @@ -102,8 +102,8 @@ public class ExifHelper { return; } - if (this.aperature != null) { - this.outFile.setAttribute(ExifInterface.TAG_APERTURE, this.aperature); + if (this.aperture != null) { + this.outFile.setAttribute(ExifInterface.TAG_APERTURE, this.aperture); } if (this.datetime != null) { this.outFile.setAttribute(ExifInterface.TAG_DATETIME, this.datetime);