Skip to content

Commit 21732d0

Browse files
committed
Fix merge of #128
1 parent 0a3bf5b commit 21732d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/jetbrains/java/decompiler/struct/StructContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public void addSpace(File file, boolean isOwn) {
169169
DecompilerContext.getLogger().writeMessage(message, IFernflowerLogger.Severity.ERROR, ex);
170170
throw new UncheckedIOException(message, ex);
171171
}
172-
} else if (file.isFile()) {
172+
} else {
173173
try {
174174
addSpace(new SingleFileContextSource(this.legacyProvider, file), isOwn);
175175
} catch (final IOException ex) {

0 commit comments

Comments
 (0)