We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf85f7 commit cf92749Copy full SHA for cf92749
src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/BytecodeViewPanel.java
@@ -51,6 +51,7 @@ public class BytecodeViewPanel extends JPanel
51
public BytecodeViewPanel(int panelIndex, ClassViewer viewer)
52
{
53
super(new BorderLayout());
54
+
55
this.panelIndex = panelIndex;
56
this.viewer = viewer;
57
}
@@ -63,7 +64,7 @@ public void createPane(ClassViewer viewer)
63
64
if (viewer.resource == null)
65
add(new JLabel("ERROR: Resource Viewer Missing Resource"));
66
- //TODO remove when bcel support is added
67
+ //TODO remove when bcel support is added
68
else if (viewer.resource.getResourceClassNode() == null)
69
add(new JLabel("ERROR: Resource Viewer Missing ClassNode"));
70
0 commit comments