Syntax Cleanup

This commit is contained in:
Konloch 2024-10-05 00:11:44 -06:00
parent 5cf85f78d4
commit cf92749337

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -51,6 +51,7 @@ public class BytecodeViewPanel extends JPanel
public BytecodeViewPanel(int panelIndex, ClassViewer viewer)
{
super(new BorderLayout());
this.panelIndex = panelIndex;
this.viewer = viewer;
}
@ -63,7 +64,7 @@ public class BytecodeViewPanel extends JPanel
if (viewer.resource == null)
add(new JLabel("ERROR: Resource Viewer Missing Resource"));
//TODO remove when bcel support is added
//TODO remove when bcel support is added
else if (viewer.resource.getResourceClassNode() == null)
add(new JLabel("ERROR: Resource Viewer Missing ClassNode"));
}