8008089: Delete OS dependent check in JdkFinder.getExecutable()

Reviewed-by: egahlin, alanb
This commit is contained in:
Katja Kantserova 2013-02-13 10:24:24 +01:00
parent 5a2e0c4105
commit 0a5d02aaa6

View File

@ -38,10 +38,6 @@ public final class JdkFinder {
}
binPath += File.separatorChar + "bin" + File.separatorChar + executable;
File toolFile = new File(binPath);
if (!toolFile.exists()) {
throw new RuntimeException(binPath + " does not exist");
}
return binPath;
}