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

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 71fbfaf  Fix style error: line too long
71fbfaf is described below

commit 71fbfafb85d1eeae7f231562261ffac223f68b2e
Author: Felix Schumacher <[email protected]>
AuthorDate: Sun Dec 6 12:17:08 2020 +0100

    Fix style error: line too long
---
 src/core/src/main/java/org/apache/jmeter/util/SSLManager.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/core/src/main/java/org/apache/jmeter/util/SSLManager.java 
b/src/core/src/main/java/org/apache/jmeter/util/SSLManager.java
index 6b491eb..5ebd3a5 100644
--- a/src/core/src/main/java/org/apache/jmeter/util/SSLManager.java
+++ b/src/core/src/main/java/org/apache/jmeter/util/SSLManager.java
@@ -166,9 +166,9 @@ public abstract class SSLManager {
         return this.keyStore;
     }
 
-    private void retryLoadKeys(File initStore, boolean allowEmptyPassword) 
throws NoSuchAlgorithmException, CertificateException, IOException, 
KeyStoreException,
-            UnrecoverableKeyException {
-        for (int i=0; i<3; i++) {
+    private void retryLoadKeys(File initStore, boolean allowEmptyPassword) 
throws NoSuchAlgorithmException,
+            CertificateException, IOException, KeyStoreException, 
UnrecoverableKeyException {
+        for (int i = 0; i < 3; i++) {
             String password = getPassword();
             if (!allowEmptyPassword) {
                 Validate.notNull(password, "Password for keystore must not be 
null");

Reply via email to