Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
Signed-off-by: David Kocher <dkocher@iterate.ch>
  • Loading branch information
dkocher committed Jun 30, 2020
1 parent 4b303dc commit c09ef85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/sun/jna/NativeLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ static String matchFramework(String libraryName) {
if (libraryName.indexOf(".framework") != -1
&& framework.exists()) {
return framework.getAbsolutePath();
}
framework = new File(new File(framework.getParentFile(), framework.getName() + ".framework"), framework.getName());
if (framework.exists()) {
}
framework = new File(new File(framework.getParentFile(), framework.getName() + ".framework"), framework.getName());
if (framework.exists()) {
return framework.getAbsolutePath();
}
}
Expand Down

0 comments on commit c09ef85

Please sign in to comment.