This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new 6b1a696  Remove trailing whitepsace.
6b1a696 is described below

commit 6b1a6968c68930e970ab4a9c21885e4872318bab
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Feb 15 11:13:03 2021 -0500

    Remove trailing whitepsace.
---
 src/main/java/org/apache/commons/crypto/jna/OpenSslJna.java       | 4 ++--
 src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/crypto/jna/OpenSslJna.java 
b/src/main/java/org/apache/commons/crypto/jna/OpenSslJna.java
index c5930d6..41d3299 100644
--- a/src/main/java/org/apache/commons/crypto/jna/OpenSslJna.java
+++ b/src/main/java/org/apache/commons/crypto/jna/OpenSslJna.java
@@ -77,7 +77,7 @@ public final class OpenSslJna {
     public static boolean isEnabled() {
         return OpenSslNativeJna.INIT_OK;
     }
-    
+
     public static void main(final String[] args) {
         info("isEnabled(): %s", isEnabled());
         final Throwable initialisationError = initialisationError();
@@ -87,7 +87,7 @@ public final class OpenSslJna {
             initialisationError.printStackTrace();
         }
     }
-    
+
     /**
      * Retrieves version/build information about OpenSSL library.
      *
diff --git a/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java 
b/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java
index 6cddba5..d1e8ab2 100644
--- a/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java
+++ b/src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java
@@ -352,7 +352,7 @@ class OpenSslJnaCipher implements CryptoCipher {
 
         /**
          * Constructor of Transform.
-         * 
+         *
          * @param algorithm the algorithm name
          * @param mode      the mode name
          * @param padding   the padding name
@@ -366,7 +366,7 @@ class OpenSslJnaCipher implements CryptoCipher {
 
     /**
      * Tokenize the transformation.
-     * 
+     *
      * @param transformation current transformation
      * @return the Transform
      * @throws NoSuchAlgorithmException if the algorithm is not supported
@@ -401,7 +401,7 @@ class OpenSslJnaCipher implements CryptoCipher {
 
         /**
          * Gets the AlgorithmMode instance.
-         * 
+         *
          * @param algorithm the algorithm name
          * @param mode      the mode name
          * @return the AlgorithmMode instance

Reply via email to