From 782d0fb3bfba80a78af5359261259c340cdcd8ea Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 3 Dec 2017 11:29:36 +0100 Subject: [PATCH] Removed fast-md5 (we now use SHA1) --- src/dorkbox/Build.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/dorkbox/Build.java b/src/dorkbox/Build.java index 5808293..b6671eb 100644 --- a/src/dorkbox/Build.java +++ b/src/dorkbox/Build.java @@ -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) {