Remove dltk.core.tests.Skip.

Now that we have junit 4.x Ignore unconditionally there is no point in
keeping it. It wasn't used at all too.

Change-Id: I53dbc965ef328afd5baf6071b4d0a862e4308f88
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/Skip.java b/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/Skip.java
deleted file mode 100644
index 2883342..0000000
--- a/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/Skip.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 NumberFour AG
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *     NumberFour AG - initial API and Implementation (Alex Panchenko)
- *******************************************************************************/
-package org.eclipse.dltk.core.tests;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Like @Ignore in junit4 & until tests will be migrated
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.METHOD)
-@Deprecated
-public @interface Skip {
-
-}
diff --git a/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/TestSupport.java b/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/TestSupport.java
index 250aa52..c859e97 100644
--- a/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/TestSupport.java
+++ b/core/tests/org.eclipse.dltk.core.tests/src/org/eclipse/dltk/core/tests/TestSupport.java
@@ -122,8 +122,7 @@
 		try {
 			final Method runMethod = testCase.getClass().getMethod(
 					testCase.getName(), NO_PARAMS);
-			if (runMethod.getAnnotation(Skip.class) != null
-					|| runMethod.getAnnotation(Ignore.class) != null) {
+			if (runMethod.getAnnotation(Ignore.class) != null) {
 				return true;
 			}
 		} catch (NoSuchMethodException e) {