Skip to content

Commit 14d4e38

Browse files
authored
Removed debug pritnts
1 parent f235dda commit 14d4e38

File tree

1 file changed

+0
-2
lines changed
  • bcomp-ng-ui/src/main/java/ru/ifmo/cs/bcomp/ui/components

1 file changed

+0
-2
lines changed

bcomp-ng-ui/src/main/java/ru/ifmo/cs/bcomp/ui/components/DebugView.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,10 @@ private Component renderWatchesComponent() {
156156
addWatch.setEnabled(false);
157157
addWatch.setFocusable(false); // Magic: this line makes the button work every time
158158
addWatch.addActionListener(actionEvent -> {
159-
System.out.println(DebugView.this.watchAddress);
160159
DebugView.this.watches.add(DebugView.this.watchAddress);
161160
DebugView.this.watchesComponent = DebugView.this.renderWatchesComponent();
162161
DebugView.this.removeAll();
163162
DebugView.this.add(DebugView.this.renderMainComponent());
164-
System.out.println(DebugView.this.watches);
165163
});
166164

167165
JButton removeWatch = new JButton("-");

0 commit comments

Comments
 (0)