Merge remote-tracking branch 'origin/master'

This commit is contained in:
Cody 2024-07-04 02:49:16 -06:00
commit 14061e9f9f

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -122,11 +122,12 @@ public class MethodNodeDecompiler {
if (m.signature != null) {
sb.append(" <sig:").append(m.signature).append(">");
sb.append(nl);
}
if (m.annotationDefault != null) {
sb.append(m.annotationDefault);
sb.append("\n");
sb.append(nl);
}
InstructionPrinter insnPrinter = new InstructionPrinter(m, args);
@ -182,9 +183,9 @@ public class MethodNodeDecompiler {
sb.append(":");
sb.append(printAttr(o, insnPrinter));
sb.append(">");
sb.append("\n");
sb.append(nl);
}
sb.append("\n");
sb.append(nl);
}
}