A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / spelling / engine / PersistentSpellDictionary.java
index be610d8..20cb55c 100644 (file)
@@ -29,12 +29,12 @@ public class PersistentSpellDictionary extends AbstractSpellDictionary {
         * Creates a new persistent spell dictionary.
         * 
         * @param url
-        *                   The URL of the word list for this dictionary
+        *            The URL of the word list for this dictionary
         */
        public PersistentSpellDictionary(final URL url) {
-               fLocation= url;
+               fLocation = url;
        }
-       
+
        /*
         * @see net.sourceforge.phpdt.ui.text.spelling.engine.AbstractSpellDictionary#acceptsWords()
         */
@@ -52,7 +52,8 @@ public class PersistentSpellDictionary extends AbstractSpellDictionary {
                        hashWord(word);
                        try {
 
-                               final FileWriter writer= new FileWriter(fLocation.getPath(), true);
+                               final FileWriter writer = new FileWriter(fLocation.getPath(),
+                                               true);
                                writer.write(word);
                                writer.write("\n"); //$NON-NLS-1$
                                writer.close();