Skip to content

Commit

Permalink
Removed debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlipp committed Mar 4, 2016
1 parent c4f6b07 commit b14e40d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/main/java/gnu/io/NativeResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,21 +139,7 @@ private void loadResource(File resource) {
if(!resource.canRead())
throw new RuntimeException("Cant open JNI file: "+resource.getAbsolutePath());
//System.out.println("Loading: "+resource.getAbsolutePath());
try {
System.out.println("Going to load " + resource + ". Hit return...");
System.in.read();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.load(resource.getAbsolutePath());
try {
System.out.println("Loaded successfully, hit return...");
System.in.read();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

private void copyResource(InputStream io, File file) throws IOException {
Expand Down

0 comments on commit b14e40d

Please sign in to comment.