Remove useless suite method in update.configurator tests.

Change-Id: Ice00d79954722ac40d9be521b544fd555989d801
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/update/org.eclipse.update.configurator.tests/src/org/eclipse/update/configurator/tests/AutomatedSuite.java b/update/org.eclipse.update.configurator.tests/src/org/eclipse/update/configurator/tests/AutomatedSuite.java
index 8a452c8..4fb3157 100644
--- a/update/org.eclipse.update.configurator.tests/src/org/eclipse/update/configurator/tests/AutomatedSuite.java
+++ b/update/org.eclipse.update.configurator.tests/src/org/eclipse/update/configurator/tests/AutomatedSuite.java
@@ -17,9 +17,6 @@
 import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 
-import junit.framework.JUnit4TestAdapter;
-import junit.framework.Test;
-
 /**
  * Tests for integration and nightly builds.
  *
@@ -29,13 +26,4 @@
 @Suite.SuiteClasses({ FeatureEntryTests.class })
 public class AutomatedSuite {
 
-	/**
-	 * Returns the suite. This is required to use the JUnit Launcher.
-	 *
-	 * @return the test suite
-	 */
-	public static Test suite() {
-		return new JUnit4TestAdapter(AutomatedSuite.class);
-	}
-
 }