Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2017-10-05 09:50:31 +0000
committerNoopur Gupta2017-10-18 18:32:03 +0000
commit0fd64c66a19ac90ffed1ebf5c763fc8c47cdd7b1 (patch)
tree19ffc604ab4af381bb312241d04565374cba7fe6
parentb4f7db6e2ceab75d7956889e8f1245ccf07ad7b8 (diff)
downloadeclipse.jdt.ui-0fd64c66a19ac90ffed1ebf5c763fc8c47cdd7b1.tar.gz
eclipse.jdt.ui-0fd64c66a19ac90ffed1ebf5c763fc8c47cdd7b1.tar.xz
eclipse.jdt.ui-0fd64c66a19ac90ffed1ebf5c763fc8c47cdd7b1.zip
Bug 525607 - [Trivial] Remove redundant @see non Javadoc from
SpellCheckEngineTestCase Change-Id: I1e26364ed2bce78741741db5cf10566f87dad360 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/spelling/SpellCheckEngineTestCase.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/spelling/SpellCheckEngineTestCase.java b/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/spelling/SpellCheckEngineTestCase.java
index d98cfd541d..9a749a3b23 100644
--- a/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/spelling/SpellCheckEngineTestCase.java
+++ b/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/spelling/SpellCheckEngineTestCase.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2017 IBM Corporation and others.
* 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
@@ -36,17 +36,11 @@ public class SpellCheckEngineTestCase extends TestCase {
protected static class TestDictionary extends AbstractSpellDictionary {
- /*
- * @see org.eclipse.jdt.ui.text.spelling.engine.ISpellDictionary#addWord(java.lang.String)
- */
@Override
public void addWord(String word) {
hashWord(word);
}
- /*
- * @see org.eclipse.jdt.ui.text.spelling.engine.AbstractSpellDictionary#getURL()
- */
@Override
protected URL getURL() throws MalformedURLException {
return getClass().getResource("Dictionary"); //$NON-NLS-1$
@@ -86,9 +80,6 @@ public class SpellCheckEngineTestCase extends TestCase {
return false;
}
- /*
- * @see junit.framework.TestCase#setUp()
- */
@Override
protected void setUp() throws Exception {
super.setUp();
@@ -104,9 +95,6 @@ public class SpellCheckEngineTestCase extends TestCase {
fEngine.registerGlobalDictionary(fGlobalDictionary);
}
- /*
- * @see junit.framework.TestCase#tearDown()
- */
@Override
protected void tearDown() throws Exception {
super.tearDown();

Back to the top