X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java index ea03a5d..867690b 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/spelling/TaskTagDictionary.java @@ -26,7 +26,8 @@ import org.eclipse.core.runtime.Preferences.PropertyChangeEvent; * * @since 3.0 */ -public class TaskTagDictionary extends AbstractSpellDictionary implements IPropertyChangeListener { +public class TaskTagDictionary extends AbstractSpellDictionary implements + IPropertyChangeListener { /* * @see net.sourceforge.phpdt.internal.ui.text.spelling.engine.AbstractSpellDictionary#getName() @@ -40,7 +41,7 @@ public class TaskTagDictionary extends AbstractSpellDictionary implements IPrope */ protected boolean load(final URL url) { - final Plugin plugin= JavaCore.getPlugin(); + final Plugin plugin = JavaCore.getPlugin(); if (plugin != null) { plugin.getPluginPreferences().addPropertyChangeListener(this); @@ -63,7 +64,7 @@ public class TaskTagDictionary extends AbstractSpellDictionary implements IPrope */ public void unload() { - final Plugin plugin= JavaCore.getPlugin(); + final Plugin plugin = JavaCore.getPlugin(); if (plugin != null) plugin.getPluginPreferences().removePropertyChangeListener(this); @@ -75,12 +76,12 @@ public class TaskTagDictionary extends AbstractSpellDictionary implements IPrope */ protected boolean updateTaskTags() { - final String tags= JavaCore.getOption(JavaCore.COMPILER_TASK_TAGS); + final String tags = JavaCore.getOption(JavaCore.COMPILER_TASK_TAGS); if (tags != null) { unload(); - final StringTokenizer tokenizer= new StringTokenizer(tags, ","); //$NON-NLS-1$ + final StringTokenizer tokenizer = new StringTokenizer(tags, ","); //$NON-NLS-1$ while (tokenizer.hasMoreTokens()) hashWord(tokenizer.nextToken());