X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/preferences/JavaPreferencesSettings.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/preferences/JavaPreferencesSettings.java index bbb7687..f827ba5 100644 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/preferences/JavaPreferencesSettings.java +++ b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/preferences/JavaPreferencesSettings.java @@ -10,7 +10,7 @@ *******************************************************************************/ package net.sourceforge.phpdt.internal.ui.preferences; -import java.util.StringTokenizer; +//import java.util.StringTokenizer; import net.sourceforge.phpdt.internal.corext.codemanipulation.CodeGenerationSettings; import net.sourceforge.phpdt.internal.corext.util.CodeFormatterUtil; @@ -51,14 +51,14 @@ public class JavaPreferencesSettings { // return new String[0]; // } - private static String[] unpackList(String str, String separator) { - StringTokenizer tok = new StringTokenizer(str, separator); //$NON-NLS-1$ - int nTokens = tok.countTokens(); - String[] res = new String[nTokens]; - for (int i = 0; i < nTokens; i++) { - res[i] = tok.nextToken().trim(); - } - return res; - } +// private static String[] unpackList(String str, String separator) { +// StringTokenizer tok = new StringTokenizer(str, separator); //$NON-NLS-1$ +// int nTokens = tok.countTokens(); +// String[] res = new String[nTokens]; +// for (int i = 0; i < nTokens; i++) { +// res[i] = tok.nextToken().trim(); +// } +// return res; +// } }