summaryrefslogtreecommitdiff
path: root/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java
diff options
context:
space:
mode:
authorThomas <>2023-05-08 18:48:38 +0200
committerThomas <>2023-05-08 18:48:38 +0200
commitd4cb0c73c86067264ece6599e3df8a2d0216156f (patch)
tree42803e3335b3b8a96d2eee96cbd0a6e842ca4ed2 /eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java
parentae477d6c71c213b9edad2cd05a4349b7fc9db08a (diff)
downloadEAAF-Components-d4cb0c73c86067264ece6599e3df8a2d0216156f.tar.gz
EAAF-Components-d4cb0c73c86067264ece6599e3df8a2d0216156f.tar.bz2
EAAF-Components-d4cb0c73c86067264ece6599e3df8a2d0216156f.zip
style(core): fix codestyle issues
Diffstat (limited to 'eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java')
-rw-r--r--eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java
index 0ddc2680..52afd2dd 100644
--- a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java
+++ b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java
@@ -127,8 +127,8 @@ public class InlineKeyStoreParser extends URLStreamHandler {
.map(keyValuePair -> new AbstractMap.SimpleEntry<String, String>(keyValuePair[0],
keyValuePair[1])) // map arrays to Entry objects
.collect(Collectors
- .groupingBy(AbstractMap.SimpleEntry::getKey)) // group entries with identical keys to a map of
- // lists
+ // group entries with identical keys to a map of lists
+ .groupingBy(AbstractMap.SimpleEntry::getKey))
.entrySet().stream() // stream the map again
.map(entry -> new AbstractMap.SimpleEntry<>(entry.getKey(),
entry.getValue().stream().map(AbstractMap.SimpleEntry::getValue).collect(Collectors