Fix compilation error with ServerInfoAdminResource
This change fixes following type inference error: * Type mismatch: cannot convert from Map<Boolean,Object> to Map<Boolean,List<String>> The error comes when opening and compiling on vscode or Eclipse, which uses Eclipse JDT compiler. Signed-off-by: Tero Saarni <tero.saarni@est.tech>
This commit is contained in:
parent
631debb6ab
commit
e35f3d7e87
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ public class ServerInfoAdminResource {
|
|||
Collectors.toMap(
|
||||
ClientSignatureVerifierProvider::isAsymmetricAlgorithm,
|
||||
clientSignatureVerifier -> Collections.singletonList(clientSignatureVerifier.getAlgorithm()),
|
||||
(l1, l2) -> listCombiner(l1, l2)
|
||||
(l1, l2) -> ServerInfoAdminResource.<String>listCombiner(l1, l2)
|
||||
.stream()
|
||||
.sorted()
|
||||
.collect(Collectors.toList()),
|
||||
|
|
Loading…
Reference in a new issue