From af0333636b203601f25fa1b69c8275764cbe0f25 Mon Sep 17 00:00:00 2001 From: pombredanne Date: Fri, 7 Sep 2007 21:43:22 +0000 Subject: [PATCH] Removed dead comments --- .../sourceforge/phpeclipse/PHPeclipsePlugin.java | 36 -------------------- .../phpeclipse/builder/IdentifierIndexManager.java | 15 ++------ 2 files changed, 4 insertions(+), 47 deletions(-) diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPeclipsePlugin.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPeclipsePlugin.java index b17fb81..34980fc 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPeclipsePlugin.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPeclipsePlugin.java @@ -162,42 +162,6 @@ public class PHPeclipsePlugin extends AbstractUIPlugin implements */ private static final String CODE_TEMPLATES_KEY = "net.sourceforge.phpdt.ui.text.custom_code_templates"; //$NON-NLS-1$ - /** - * The key to store whether the legacy templates have been migrated - * - * @since 3.0 - */ - // private static final String TEMPLATES_MIGRATION_KEY= - // "net.sourceforge.phpdt.ui.text.templates_migrated"; //$NON-NLS-1$ - /** - * The key to store whether the legacy code templates have been migrated - * - * @since 3.0 - */ - // private static final String CODE_TEMPLATES_MIGRATION_KEY= - // "net.sourceforge.phpdt.ui.text.code_templates_migrated"; - // //$NON-NLS-1$ - // private static ExternalToolsPlugin externalTools; - /** - * The Java virtual machine that we are running on. - */ - // private static int jvm; - // /** MRJ 2.0 */ - // private static final int MRJ_2_0 = 0; - // - // /** MRJ 2.1 or later */ - // private static final int MRJ_2_1 = 1; - // - // /** Java on Mac OS X 10.0 (MRJ 3.0) */ - // private static final int MRJ_3_0 = 3; - // - // /** MRJ 3.1 */ - // private static final int MRJ_3_1 = 4; - // - // /** JVM constant for any other platform */ - // private static final int OTHER = -1; - // public static final String PHP_RESOURCES_VIEW_ID = PLUGIN_ID + - // ".resourcesview.ViewPHPResources"; //$NON-NLS-1$ public static final String PHP_CODING_ACTION_SET_ID = PLUGIN_ID + ".ui.CodingActionSet"; //$NON-NLS-1$ diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java index 2d84bec..741ff32 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/builder/IdentifierIndexManager.java @@ -61,8 +61,6 @@ public class IdentifierIndexManager { line.append('\t'); line.append(typeOfIdentifier); line.append(identifier); - // line.append("\to"); // Offset - // line.append(fScanner.getCurrentTokenStartPosition()); } /** @@ -128,11 +126,6 @@ public class IdentifierIndexManager { System.out.println(fScanner.toStringAction(fToken)); } return; - // } catch (InvalidInputException e) { - // // ignore errors - // // e.printStackTrace(); - // } - // fToken = TokenNameERROR; } private void parseDeclarations(char[] parent, StringBuffer buf, @@ -333,7 +326,7 @@ public class IdentifierIndexManager { try { getNextToken(); while (fToken != TokenNameEOF) { // && fToken != - // TokenNameERROR) { + // TokenNameERROR) { phpdocOffset = -1; hasModifiers = false; if (fToken == TokenNameCOMMENT_PHPDOC) { @@ -524,12 +517,12 @@ public class IdentifierIndexManager { * @throws CoreException */ public void addInputStream(InputStream stream, String filePath, - LineCreator lineCreator , String charset) throws CoreException { + LineCreator lineCreator, String charset) throws CoreException { try { StringBuffer lineBuffer = new StringBuffer(); lineBuffer.append(filePath); lineCreator.parseIdentifiers(Util.getInputStreamAsCharArray(stream, - -1, charset), lineBuffer); + -1, charset), lineBuffer); addLine(lineBuffer.toString()); } catch (IOException e) { e.printStackTrace(); @@ -539,7 +532,7 @@ public class IdentifierIndexManager { stream.close(); } } catch (IOException e) { - //do nothing + // do nothing } } } -- 1.7.1