Replace \n With Constants.nl

This commit is contained in:
Konloch 2024-04-13 00:40:27 -06:00
parent d30d36eb74
commit 85d310f498

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -126,7 +126,7 @@ public class MethodNodeDecompiler {
if (m.annotationDefault != null) {
sb.append(m.annotationDefault);
sb.append("\n");
sb.append(nl);
}
InstructionPrinter insnPrinter = new InstructionPrinter(m, args);
@ -182,9 +182,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);
}
}