Cleanup (warnings; formatting)

This commit is contained in:
Roman Shevchenko
2018-03-08 11:34:42 +01:00
parent 2393cd9aa8
commit 95aa1ae2f0
4 changed files with 22 additions and 40 deletions

View File

@@ -114,8 +114,8 @@ public class Fernflower implements IDecompiledData {
classProcessor.writeClass(cl, buffer);
return buffer.toString();
}
catch (Throwable ex) {
DecompilerContext.getLogger().writeMessage("Class " + cl.qualifiedName + " couldn't be fully decompiled.", ex);
catch (Throwable t) {
DecompilerContext.getLogger().writeMessage("Class " + cl.qualifiedName + " couldn't be fully decompiled.", t);
return null;
}
}