mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
07.16.2010 197c421a7592c595a3a1cdf0b691434abf1164d1
Use generics to avoid warnings from my IDE.
1 files modified
10 ■■■■ changed files
opends/src/ads/org/opends/admin/ads/util/ConnectionUtils.java 10 ●●●● patch | view | raw | blame | history
opends/src/ads/org/opends/admin/ads/util/ConnectionUtils.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2008-2009 Sun Microsystems, Inc.
 *      Copyright 2008-2010 Sun Microsystems, Inc.
 */
package org.opends.admin.ads.util;
@@ -128,7 +128,7 @@
    /* Contains the DirContext and the Exception if any */
    final Object[] pair = new Object[]
      { null, null };
    final Hashtable fEnv = env;
    final Hashtable<String, String> fEnv = env;
    Thread t = new Thread(new Runnable()
    {
      public void run()
@@ -209,7 +209,7 @@
    /* Contains the DirContext and the Exception if any */
    final Object[] pair = new Object[] {null, null};
    final Hashtable fEnv = env;
    final Hashtable<String, String> fEnv = env;
    final TrustManager fTrustManager = trustManager;
    final KeyManager   fKeyManager   = keyManager;
@@ -259,7 +259,7 @@
    }
    /* Contains the DirContext and the Exception if any */
    final Object[] pair = new Object[] {null, null};
    final Hashtable fEnv = env;
    final Hashtable<?, ?> fEnv = env;
    final TrustManager fTrustManager = trustManager;
    final KeyManager   fKeyManager   = keyManager;
    final Control[] fNewCtls = newCtls;
@@ -348,7 +348,7 @@
    /* Contains the DirContext and the Exception if any */
    final Object[] pair = new Object[] {null, null};
    final Hashtable fEnv = env;
    final Hashtable<?, ?> fEnv = env;
    final String fDn = dn;
    final String fPwd = pwd;
    final TrustManager fTrustManager = trustManager;