Skip to content

Commit

Permalink
minor problems fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstotz committed Jan 27, 2024
1 parent 2519e89 commit 3d71b1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions org.sf.feeling.decompiler/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ bin.includes = META-INF/,\
icons/,\
lib/,\
doc/,\
lib/asm-9.1.jar,\
lib/fernflower.jar
lib/asm-9.1.jar
jars.compile.order = .
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static IDecompiler getDebugDecompiler(int level, boolean debug) {
}
Optional<IDecompilerDescriptor> defaultDecompiler = stream
.sorted(new DefaultDecompilerDescriptorComparator()).findFirst();
if (defaultDecompiler.isEmpty()) {
if (!defaultDecompiler.isPresent()) {
return null;
}
return defaultDecompiler.get().getDecompiler();
Expand Down

0 comments on commit 3d71b1e

Please sign in to comment.