X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java index b2f05b7..94ed16b 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/JavaDocTagDictionary.java @@ -16,13 +16,13 @@ import java.net.URL; import net.sourceforge.phpdt.internal.ui.text.phpdoc.IJavaDocTagConstants; import net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary; - /** * Dictionary for Javadoc tags. * * @since 3.0 */ -public class JavaDocTagDictionary extends AbstractSpellDictionary implements IJavaDocTagConstants { +public class JavaDocTagDictionary extends AbstractSpellDictionary implements + IJavaDocTagConstants { /* * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getName() @@ -49,13 +49,13 @@ public class JavaDocTagDictionary extends AbstractSpellDictionary implements IJa unload(); - for (int index= 0; index < JAVADOC_LINK_TAGS.length; index++) + for (int index = 0; index < JAVADOC_LINK_TAGS.length; index++) hashWord(JAVADOC_LINK_TAGS[index]); - for (int index= 0; index < JAVADOC_ROOT_TAGS.length; index++) + for (int index = 0; index < JAVADOC_ROOT_TAGS.length; index++) hashWord(JAVADOC_ROOT_TAGS[index]); - for (int index= 0; index < JAVADOC_PARAM_TAGS.length; index++) + for (int index = 0; index < JAVADOC_PARAM_TAGS.length; index++) hashWord(JAVADOC_PARAM_TAGS[index]); return true;