Skip to content

Commit

Permalink
unused files remove, add temp folder to lib path
Browse files Browse the repository at this point in the history
  • Loading branch information
creepid committed Sep 19, 2015
1 parent 6e560b8 commit 4da85ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
package by.creepid.jusbrelay;

import by.creepid.jusbrelay.util.NativeHelper;
import by.creepid.jusbrelay.util.PlatformSupport;

/**
*
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/by/creepid/jusbrelay/util/NativeHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ static File extractToTempFile(InputStream source, String tempfilePrefix) throws
FileOutputStream destination = new FileOutputStream(tempFile);
copy(source, destination);

//addLibraryPath(tempFile.getParentFile().getAbsolutePath());
//Add folder to lib path
addLibraryPath(tempFile.getParentFile().getAbsolutePath());

return tempFile;
}
Expand Down

0 comments on commit 4da85ce

Please sign in to comment.