Removed redundant "final" keywords at variables and parameters.

This commit is contained in:
Evgeny Gerashchenko
2012-07-27 17:57:02 +04:00
parent 04d9b4685b
commit 42e00102f8
15 changed files with 112 additions and 112 deletions
@@ -30,12 +30,12 @@ public class CompilerPathUtil {
@Nullable
public static File getSDKHome() {
final File compilerJar = new File(PathUtil.getJarPathForClass(CompilerPathUtil.class));
File compilerJar = new File(PathUtil.getJarPathForClass(CompilerPathUtil.class));
if (!compilerJar.exists()) return null;
if (compilerJar.getName().equals(PathUtil.KOTLIN_COMPILER_JAR)) {
final File lib = compilerJar.getParentFile();
final File answer = lib.getParentFile();
File lib = compilerJar.getParentFile();
File answer = lib.getParentFile();
return answer.exists() ? answer : null;
}