You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2022/05/24 18:13:55 UTC

[tomcat] branch main updated: Fix indent

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

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new d872f1eeac Fix indent
d872f1eeac is described below

commit d872f1eeac24d946cc04d989bc8abfd4d4089cee
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue May 24 18:58:21 2022 +0100

    Fix indent
---
 java/org/apache/tomcat/jni/SSL.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/java/org/apache/tomcat/jni/SSL.java b/java/org/apache/tomcat/jni/SSL.java
index 06b6090111..316e6182e3 100644
--- a/java/org/apache/tomcat/jni/SSL.java
+++ b/java/org/apache/tomcat/jni/SSL.java
@@ -343,7 +343,7 @@ public final class SSL {
      * @return New BIO handle
      * @throws Exception An error occurred
      */
-     public static native long newBIO(long pool, BIOCallback callback)
+    public static native long newBIO(long pool, BIOCallback callback)
             throws Exception;
 
     /**
@@ -351,19 +351,19 @@ public final class SSL {
      * @param bio BIO to close and destroy.
      * @return APR Status code
      */
-     public static native int closeBIO(long bio);
+    public static native int closeBIO(long bio);
 
     /**
      * Set global Password callback for obtaining passwords.
      * @param callback PasswordCallback implementation to use.
      */
-     public static native void setPasswordCallback(PasswordCallback callback);
+    public static native void setPasswordCallback(PasswordCallback callback);
 
     /**
      * Set global Password for decrypting certificates and keys.
      * @param password Password to use.
      */
-     public static native void setPassword(String password);
+    public static native void setPassword(String password);
 
     /**
      * Return last SSL error string


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org