We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f235dda commit 14d4e38Copy full SHA for 14d4e38
bcomp-ng-ui/src/main/java/ru/ifmo/cs/bcomp/ui/components/DebugView.java
@@ -156,12 +156,10 @@ private Component renderWatchesComponent() {
156
addWatch.setEnabled(false);
157
addWatch.setFocusable(false); // Magic: this line makes the button work every time
158
addWatch.addActionListener(actionEvent -> {
159
- System.out.println(DebugView.this.watchAddress);
160
DebugView.this.watches.add(DebugView.this.watchAddress);
161
DebugView.this.watchesComponent = DebugView.this.renderWatchesComponent();
162
DebugView.this.removeAll();
163
DebugView.this.add(DebugView.this.renderMainComponent());
164
- System.out.println(DebugView.this.watches);
165
});
166
167
JButton removeWatch = new JButton("-");
0 commit comments