X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/LocaleSensitiveSpellDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/LocaleSensitiveSpellDictionary.java index 15b88f2..a80ba1a 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/LocaleSensitiveSpellDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/engine/LocaleSensitiveSpellDictionary.java @@ -34,13 +34,14 @@ public class LocaleSensitiveSpellDictionary extends AbstractSpellDictionary { * 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 LocaleSensitiveSpellDictionary(final Locale locale, final URL location) { - fLocation= location; - fLocale= locale; + public LocaleSensitiveSpellDictionary(final Locale locale, + final URL location) { + fLocation = location; + fLocale = locale; } /** @@ -56,6 +57,9 @@ public class LocaleSensitiveSpellDictionary extends AbstractSpellDictionary { * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getURL() */ protected final URL getURL() throws MalformedURLException { - return new URL(fLocation, fLocale.toString().toLowerCase() + "." + PHPUIMessages.getString("Spelling.dictionary.file.extension")); //$NON-NLS-1$ //$NON-NLS-2$ + return new URL( + fLocation, + fLocale.toString().toLowerCase() + + "." + PHPUIMessages.getString("Spelling.dictionary.file.extension")); //$NON-NLS-1$ //$NON-NLS-2$ } }