You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by fo...@apache.org on 2015/09/25 11:18:37 UTC

camel git commit: CAMEL-9163: Code clean-up: removing source check error

Repository: camel
Updated Branches:
  refs/heads/master 8ee52c744 -> e84b46d75


CAMEL-9163: Code clean-up: removing source check error

Change-Id: I967e8b5b619e1dc2950d55fb3075591f2c0210fb


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e84b46d7
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e84b46d7
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e84b46d7

Branch: refs/heads/master
Commit: e84b46d7505bbdac8dc0a77f36efc0834027c3ad
Parents: 8ee52c7
Author: Franz Forsthofer <fr...@sap.com>
Authored: Fri Sep 25 11:14:40 2015 +0200
Committer: Franz Forsthofer <fr...@sap.com>
Committed: Fri Sep 25 11:17:23 2015 +0200

----------------------------------------------------------------------
 .../apache/camel/converter/crypto/PGPKeyAccessDataFormat.java    | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/e84b46d7/components/camel-crypto/src/main/java/org/apache/camel/converter/crypto/PGPKeyAccessDataFormat.java
----------------------------------------------------------------------
diff --git a/components/camel-crypto/src/main/java/org/apache/camel/converter/crypto/PGPKeyAccessDataFormat.java b/components/camel-crypto/src/main/java/org/apache/camel/converter/crypto/PGPKeyAccessDataFormat.java
index c926a81..a416d0d 100644
--- a/components/camel-crypto/src/main/java/org/apache/camel/converter/crypto/PGPKeyAccessDataFormat.java
+++ b/components/camel-crypto/src/main/java/org/apache/camel/converter/crypto/PGPKeyAccessDataFormat.java
@@ -81,8 +81,6 @@ import org.slf4j.LoggerFactory;
  */
 public class PGPKeyAccessDataFormat extends ServiceSupport implements DataFormat, DataFormatName {
 
-    private static final Logger log = LoggerFactory.getLogger(PGPKeyAccessDataFormat.class);
-
     public static final String KEY_USERID = "CamelPGPDataFormatKeyUserid";
     public static final String KEY_USERIDS = "CamelPGPDataFormatKeyUserids";
     public static final String SIGNATURE_KEY_USERID = "CamelPGPDataFormatSignatureKeyUserid";
@@ -385,7 +383,7 @@ public class PGPKeyAccessDataFormat extends ServiceSupport implements DataFormat
                 pgpFactory = new PGPObjectFactory(uncompressedData, new BcKeyFingerprintCalculator());
                 object = pgpFactory.nextObject();
             } else {
-                log.debug("PGP Message does not contain a Compressed Data Packet");
+                LOG.debug("PGP Message does not contain a Compressed Data Packet");
             }
             PGPOnePassSignature signature;
             if (object instanceof PGPOnePassSignatureList) {