X-Git-Url: http://secure.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 d9edc82..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,21 +18,21 @@ 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); @@ -43,7 +43,7 @@ public class SpellReconcileDictionary extends LocaleSensitiveSpellDictionary imp */ 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);