From 17e739f68a7f81fc850fda72c27802338a492f25 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 10 Sep 2012 14:53:21 -0400 Subject: [PATCH] Spelling: aperture --- framework/src/org/apache/cordova/ExifHelper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/src/org/apache/cordova/ExifHelper.java b/framework/src/org/apache/cordova/ExifHelper.java index 4be79f1f..38ad0a60 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);