Removed fast-md5 (we now use SHA1)

This commit is contained in:
nathan 2017-12-03 11:29:36 +01:00
parent 452231b7c7
commit 782d0fb3bf
1 changed files with 0 additions and 11 deletions

View File

@ -81,17 +81,6 @@ class Build {
}
}
// now have to add fastMD5 sum jars (they are in a different location)
libDir = new File(libDir, "fast-md5");
for (File f : libDir.listFiles()) {
final String name = f.getName();
if (!f.isDirectory() && f.canRead() && name.endsWith(".jar") && !name.contains("source") && !name.contains("src")) {
// System.err.println("adding url " + f.getAbsolutePath());
method.invoke(sysloader, new Object[] {f.toURI().toURL()});
}
}
// try to load the library again to make sure the libs loaded
Class.forName("com.esotericsoftware.wildcard.Paths");
} catch (Throwable t) {