From d4cb0c73c86067264ece6599e3df8a2d0216156f Mon Sep 17 00:00:00 2001 From: Thomas <> Date: Mon, 8 May 2023 18:48:38 +0200 Subject: style(core): fix codestyle issues --- .../egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/credential/inline/InlineKeyStoreParser.java') 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(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 -- cgit v1.2.3