X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/SpellReconcileDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/SpellReconcileDictionary.java index b19b0c4..4e3530c 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/SpellReconcileDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/SpellReconcileDictionary.java @@ -18,32 +18,32 @@ import net.sourceforge.phpdt.internal.ui.text.phpdoc.IHtmlTagConstants; import net.sourceforge.phpdt.internal.ui.text.phpdoc.IJavaDocTagConstants; import net.sourceforge.phpdt.internal.ui.text.spelling.engine.LocaleSensitiveSpellDictionary; - /** * Dictionary used by the spell reconciling strategy. * * @since 3.0 */ -public class SpellReconcileDictionary extends LocaleSensitiveSpellDictionary implements IJavaDocTagConstants, IHtmlTagConstants { +public class SpellReconcileDictionary extends LocaleSensitiveSpellDictionary + implements IJavaDocTagConstants, IHtmlTagConstants { /** * Creates a new locale sensitive spell dictionary. * * @param locale - * The locale for this dictionary + * The locale for this dictionary * @param location - * The location of the locale sensitive dictionaries + * The location of the locale sensitive dictionaries */ public SpellReconcileDictionary(final Locale locale, final URL location) { super(locale, location); } /* - * @see org.eclipse.jdt.internal.ui.text.spelling.engine.ISpellDictionary#isCorrect(java.lang.String) + * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.ISpellDictionary#isCorrect(java.lang.String) */ public boolean isCorrect(final String word) { - final char character= word.charAt(0); + final char character = word.charAt(0); if (character != JAVADOC_TAG_PREFIX && character != HTML_TAG_PREFIX) return super.isCorrect(word);