removed sout
This commit is contained in:
parent
a9cd8e715d
commit
78071e9935
3 changed files with 1 additions and 2 deletions
|
@ -58,7 +58,6 @@ public class Agenda extends JPanel {
|
|||
return true;
|
||||
}
|
||||
};
|
||||
System.out.println(table.getRowHeight());
|
||||
table.setCellSelectionEnabled(true);
|
||||
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
|
||||
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
|
||||
|
|
|
@ -46,7 +46,6 @@ public class GUI extends JFrame implements ActionListener {
|
|||
this.renderMenu();
|
||||
|
||||
new Agenda(agendaPanel, headers, 8, this.currentPage);
|
||||
System.out.println("agenda");
|
||||
previousButton.addActionListener(this);
|
||||
nextButton.addActionListener(this);
|
||||
HCButton.addActionListener(this);
|
||||
|
|
|
@ -35,6 +35,7 @@ public class ProjectionHandler extends JDialog {
|
|||
dispose();
|
||||
}
|
||||
});
|
||||
setLocationRelativeTo(null);
|
||||
}
|
||||
|
||||
private void handleDialogName() {
|
||||
|
|
Reference in a new issue