Remove debug message

This commit is contained in:
2014-11-26 14:31:17 +00:00
parent ffacbad78e
commit 7c8e824b69

View File

@@ -35,7 +35,6 @@ public class NativeLibraryLocator {
public File find(LibraryDef libraryDef) throws IOException { public File find(LibraryDef libraryDef) throws IOException {
String resourceName = String.format("%s/%s/%s/%s", libraryDef.getGroupPath(), libraryDef.name, libraryDef.platform, libraryDef.file); String resourceName = String.format("%s/%s/%s/%s", libraryDef.getGroupPath(), libraryDef.name, libraryDef.platform, libraryDef.file);
System.out.println(resourceName);
if (extractDir != null) { if (extractDir != null) {
File libFile = new File(extractDir, String.format("%s/%s", libraryDef.platform, libraryDef.file)); File libFile = new File(extractDir, String.format("%s/%s", libraryDef.platform, libraryDef.file));
File lockFile = new File(libFile.getParentFile(), libFile.getName() + ".lock"); File lockFile = new File(libFile.getParentFile(), libFile.getName() + ".lock");