Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1D442DC92 for ; Tue, 18 Sep 2012 02:12:11 +0000 (UTC) Received: (qmail 56609 invoked by uid 500); 18 Sep 2012 02:12:10 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 56534 invoked by uid 500); 18 Sep 2012 02:12:10 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 56187 invoked by uid 99); 18 Sep 2012 02:12:10 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Sep 2012 02:12:10 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BBE05374B7; Tue, 18 Sep 2012 02:12:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: macdonst@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [22/25] android commit: Spelling: aperture Message-Id: <20120918021209.BBE05374B7@tyr.zones.apache.org> Date: Tue, 18 Sep 2012 02:12:09 +0000 (UTC) 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 Authored: Mon Sep 10 14:53:21 2012 -0400 Committer: Simon MacDonald 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);