You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2018/10/25 09:29:57 UTC

[cxf-fediz] branch master updated: Diamond operator cleanup

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

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git


The following commit(s) were added to refs/heads/master by this push:
     new 3507655  Diamond operator cleanup
3507655 is described below

commit 3507655a558d3bbcfb069da82a3d07a447d361c5
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Thu Oct 25 10:05:47 2018 +0100

    Diamond operator cleanup
---
 .../cxf/fediz/service/oidc/clients/ClientRegistrationService.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/clients/ClientRegistrationService.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/clients/ClientRegistrationService.java
index 4a5bda1..4950d9b 100644
--- a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/clients/ClientRegistrationService.java
+++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/clients/ClientRegistrationService.java
@@ -82,7 +82,7 @@ public class ClientRegistrationService {
     private Map<String, Set<String>> clientNames = new HashMap<>();
     private OAuthDataProvider dataProvider;
     private ClientRegistrationProvider clientProvider;
-    private Map<String, String> homeRealms = new LinkedHashMap<String, String>();
+    private Map<String, String> homeRealms = new LinkedHashMap<>();
     private boolean protectIdTokenWithClientSecret;
     private Map<String, String> clientScopes;