Removed unnecessary final on local variables.

This commit is contained in:
Evgeny Gerashchenko
2013-03-13 14:11:44 +04:00
parent c24f1605f3
commit ec5331057a
284 changed files with 1135 additions and 1132 deletions
@@ -111,9 +111,9 @@ public class BytecodeCompilerTask extends Task {
@Override
public void execute() {
final BytecodeCompiler compiler = new BytecodeCompiler();
final String stdlibPath = (this.stdlib != null ? getPath(this.stdlib) : null);
final String[] classpath = (this.compileClasspath != null ? this.compileClasspath.list() : null);
BytecodeCompiler compiler = new BytecodeCompiler();
String stdlibPath = (this.stdlib != null ? getPath(this.stdlib) : null);
String[] classpath = (this.compileClasspath != null ? this.compileClasspath.list() : null);
if (this.src != null) {