Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackdread committed Oct 22, 2018
1 parent 041e27d commit e72a15c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ public void setArchLibraryToUse(final ArchLibrary archLibraryToUse) {
this.archLibraryToUse = archLibraryToUse;
}

/**
* @return path to lib to load
*/
protected Optional<String> getLibPath() {
final String jnaPath = System.getProperty(JNA_PATH_PROPERTY);
if (jnaPath != null) {
Expand Down Expand Up @@ -110,6 +113,9 @@ protected Optional<String> getLibPath() {
}
}

/**
* <p>Method is called at every call of {@link #edsdkLibrary()}</p>
*/
protected void initLibrary() {
if (EDSDK == null) {
final String libPath = getLibPath()
Expand Down

0 comments on commit e72a15c

Please sign in to comment.