Skip to content

Commit

Permalink
fix: syntax error on abstract methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jumanji144 committed Apr 15, 2024
1 parent cf349d9 commit 676929e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ public void print(PrintContext<?> ctx) {
var arr = obj.value("parameters").array();
arr.print(names.parameters().values(), PrintContext::print);
arr.end();
obj.next();
}
var methodCode = method.code();
if (methodCode != null) {
obj.next();
Map<Integer, String> labelNames = getLabelNames(methodCode.elements());
if (!methodCode.tryCatchBlocks().isEmpty()) {
var arr = obj.value("exceptions").array();
Expand Down

0 comments on commit 676929e

Please sign in to comment.