Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java')
-rw-r--r--plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java b/plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java
index 6ce1c1eb0d2..3cf4ad15012 100644
--- a/plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java
+++ b/plugins/org.eclipse.osee.authentication.ldap/src/org/eclipse/osee/authentication/ldap/internal/LdapClient.java
@@ -86,7 +86,7 @@ public class LdapClient implements ContextConfigProvider {
@Override
public Hashtable<String, String> getContextConfig() {
- Hashtable<String, String> props = new Hashtable<String, String>();
+ Hashtable<String, String> props = new Hashtable<>();
props.put(Context.INITIAL_CONTEXT_FACTORY, LDAP_INITIAL_CONTEXT_FACTORY);
props.put(Context.PROVIDER_URL, getServerAddress());
props.put(Context.REFERRAL, getReferralHandling().getContextReferralName());

Back to the top