diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-06-15 08:53:44 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-06-15 08:53:44 +0200 |
commit | 97744db300f4ba1d640d2478ab175d797e1a5f97 (patch) | |
tree | 16f7e9a0875490bef5fefd62b912907ce93e54b2 /eaaf_core_utils | |
parent | f7fd3c35f915dfc7f1d04a2b7288a8fa9aab2558 (diff) | |
download | EAAF-Components-97744db300f4ba1d640d2478ab175d797e1a5f97.tar.gz EAAF-Components-97744db300f4ba1d640d2478ab175d797e1a5f97.tar.bz2 EAAF-Components-97744db300f4ba1d640d2478ab175d797e1a5f97.zip |
fix Code-Quality problem1.1.5
Diffstat (limited to 'eaaf_core_utils')
-rw-r--r-- | eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/http/HttpUtils.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/http/HttpUtils.java b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/http/HttpUtils.java index 5035460f..81ebe1fe 100644 --- a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/http/HttpUtils.java +++ b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/http/HttpUtils.java @@ -256,12 +256,12 @@ public class HttpUtils { : keyPasswordString.toCharArray(); if (StringUtils.isNotEmpty(keyAlias)) { - sslContextBuilder = sslContextBuilder - .loadKeyMaterial(keyStore.getFirst(), keyPassword, new EaafSslKeySelectionStrategy(keyAlias)); + sslContextBuilder + .loadKeyMaterial(keyStore.getFirst(), keyPassword, new EaafSslKeySelectionStrategy(keyAlias)); } else { - sslContextBuilder = sslContextBuilder - .loadKeyMaterial(keyStore.getFirst(), keyPassword); + sslContextBuilder.loadKeyMaterial(keyStore.getFirst(), keyPassword); + } } |