From 30f529154749a0c79ce8e965886edff0c615b94e Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 13 Jul 2015 10:38:27 +0000
Subject: [PATCH] Inlined TestCaseUtils.new*() methods (superseded by CollectionUtils methods).

---
 opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java b/opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java
index ac129e3..a4b39de 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java
@@ -82,7 +82,6 @@
 import static org.opends.server.loggers.TextErrorLogPublisher.*;
 import static org.opends.server.loggers.TextHTTPAccessLogPublisher.*;
 import static org.opends.server.protocols.internal.InternalClientConnection.*;
-import static org.opends.server.util.CollectionUtils.*;
 import static org.opends.server.util.ServerConstants.*;
 import static org.opends.server.util.StaticUtils.*;
 import static org.testng.Assert.*;
@@ -1907,21 +1906,6 @@
              "--set", "enabled:" + enabled);
   }
 
-  public static <T> Set<T> newSet(T... elems)
-  {
-    return newHashSet(elems);
-  }
-
-  public static <T> SortedSet<T> newSortedSet(T... elems)
-  {
-    return newTreeSet(elems);
-  }
-
-  public static <T> List<T> newList(T... elems)
-  {
-    return newArrayList(elems);
-  }
-
   public static HashSet<PluginType> getPluginTypes(Entry e)
   {
     HashSet<PluginType> pluginTypes = new HashSet<>();

--
Gitblit v1.10.0