Merge branch 'Konloch:master' into master

This commit is contained in:
Cody 2024-04-22 09:52:23 -06:00 committed by GitHub
commit a00a563bbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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);
}
}