Skip to content

Commit

Permalink
Added missing case of "no directory" as per method documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
castortech committed Apr 24, 2018
1 parent a103c50 commit 98b1531
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ final public String[] getSpecificSearchDirs() {
return new String[] {
getPlatform() + "/" + System.getProperty("os.arch"),
getPlatform(),
getOperatingSystem()
getOperatingSystem(),
"."
};
}

Expand Down

0 comments on commit 98b1531

Please sign in to comment.