Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-11 21:20:46 +0000
committerAlexander Kurtakov2019-02-12 08:24:52 +0000
commitbe07c17efd7df789819ac96dc4d99fd2e54c9ccb (patch)
treebf6a7e8beded1b2dc226885fc5369527aa0ca6e4 /org.eclipse.ua.tests/intro/org/eclipse/ua
parent49b3c3e9375792a4da5588f67eb435420d8ecf82 (diff)
downloadeclipse.platform.ua-be07c17efd7df789819ac96dc4d99fd2e54c9ccb.tar.gz
eclipse.platform.ua-be07c17efd7df789819ac96dc4d99fd2e54c9ccb.tar.xz
eclipse.platform.ua-be07c17efd7df789819ac96dc4d99fd2e54c9ccb.zip
Remove useless non-javadoc see tags.
Change-Id: I9c83744ad1931d1a23f7ee6f1ee3310fb85ab8e3 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ua.tests/intro/org/eclipse/ua')
-rw-r--r--org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/performance/OpenIntroTest.java14
1 files changed, 4 insertions, 10 deletions
diff --git a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/performance/OpenIntroTest.java b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/performance/OpenIntroTest.java
index 4eeea1572..e06949544 100644
--- a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/performance/OpenIntroTest.java
+++ b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/performance/OpenIntroTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2015 IBM Corporation and others.
+ * Copyright (c) 2006, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -13,9 +13,6 @@
*******************************************************************************/
package org.eclipse.ua.tests.intro.performance;
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
import org.eclipse.swt.widgets.Display;
import org.eclipse.test.performance.Dimension;
import org.eclipse.test.performance.PerformanceTestCase;
@@ -27,6 +24,9 @@ import org.eclipse.ui.intro.IIntroManager;
import org.eclipse.ui.intro.IIntroPart;
import org.eclipse.ui.intro.config.CustomizableIntroPart;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
public class OpenIntroTest extends PerformanceTestCase {
/*
@@ -36,9 +36,6 @@ public class OpenIntroTest extends PerformanceTestCase {
return new TestSuite(OpenIntroTest.class);
}
- /* (non-Javadoc)
- * @see org.eclipse.test.performance.PerformanceTestCase#setUp()
- */
@Override
protected void setUp() throws Exception {
super.setUp();
@@ -48,9 +45,6 @@ public class OpenIntroTest extends PerformanceTestCase {
ExtensionPointManager.getInst().setExtensionFilter(UserAssistanceTestPlugin.getPluginId());
}
- /* (non-Javadoc)
- * @see org.eclipse.test.performance.PerformanceTestCase#tearDown()
- */
@Override
protected void tearDown() throws Exception {
super.tearDown();

Back to the top