Compiler Report

Compiler: Eclipse Java Compiler Version: 0.770, 3.3.0

Number of source files: 124 Number of classfiles: 154

Problems: 13 (Errors: 0 Warnings: 13 )

Source File: org/eclipse/dltk/tcl/ast/expressions/TclExecuteExpression.java
1. WARNING: UnusedPrivateField

The field TclExecuteExpression.fileName is never read locally

TclExecuteExpression.java:

26: private char[] fileName = null;

Source File: org/eclipse/dltk/tcl/core/TclParseUtil.java
1. WARNING: LocalVariableIsNeverUsed

The local variable types is never read

TclParseUtil.java:

459: TypeDeclaration[] types = type.getTypes();

Source File: org/eclipse/dltk/tcl/core/ast/TclSwitchStatement.java
1. WARNING: NonStaticAccessToStaticField

The static field StatementConstants.S_SWITCH should be accessed in a static way

TclSwitchStatement.java:

29: return this.S_SWITCH;

Source File: org/eclipse/dltk/tcl/internal/core/TclCalleeProcessor.java
1. WARNING: MaskedCatch

Unreachable catch block for CoreException. Only more specific exceptions are thrown and handled by previous catch block(s).

TclCalleeProcessor.java:

93: } catch (CoreException e) {

Source File: org/eclipse/dltk/tcl/internal/core/codeassist/TclCompletionEngine.java
1. WARNING: LocalVariableIsNeverUsed

The local variable provideDots is never read

TclCompletionEngine.java:

1093: boolean provideDots = false;

Source File: org/eclipse/dltk/tcl/internal/core/codeassist/completion/TclCompletionParser.java
1. WARNING: UnusedPrivateMethod

The method checkVariableWithoutDollarCompletion(TclStatement, int) from the type TclCompletionParser is never used locally

TclCompletionParser.java:

405: private boolean checkVariableWithoutDollarCompletion( TclStatement statement, int position) {

Source File: org/eclipse/dltk/tcl/internal/core/packages/DLTKTclHelper.java
1. WARNING: LocalVariableIsNeverUsed

The local variable error is never read

DLTKTclHelper.java:

105: List error = getScriptOutput(process.getErrorStream());

2. WARNING: LocalVariableIsNeverUsed

The local variable error is never read

DLTKTclHelper.java:

187: List error = getScriptOutput(process.getErrorStream());

3. WARNING: UnusedPrivateMethod

The method getAutoPath(List) from the type DLTKTclHelper is never used locally

DLTKTclHelper.java:

204: private static String[] getAutoPath(List content) {

Source File: org/eclipse/dltk/tcl/internal/parser/TclASTBuilder.java
1. WARNING: UnusedPrivateMethod

The method replaceChild(ASTNode, ASTNode, ASTNode) from the type TclASTBuilder is never used locally

TclASTBuilder.java:

35: private static void replaceChild(ASTNode node, ASTNode statement, ASTNode nsType) {

Source File: org/eclipse/dltk/tcl/internal/parser/TclSourceParser.java
1. WARNING: UnusedImport

The import org.eclipse.dltk.ast.parser.ISourceParserConstants is never used

TclSourceParser.java:

13: import org.eclipse.dltk.ast.parser.ISourceParserConstants;

2. WARNING: UnusedPrivateField

The field TclSourceParser.flags is never read locally

TclSourceParser.java:

44: private int flags;

Source File: org/eclipse/dltk/tcl/internal/parsers/raw/SimpleTclParser.java
1. WARNING: UnusedImport

The import java.text.ParseException is never used

SimpleTclParser.java:

12: import java.text.ParseException;