Skip to content

Commit

Permalink
Remove non-printable character that was breaking the build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mjog committed Sep 9, 2021
1 parent 6cfeacc commit bcfc787
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void actionPerformed(ActionEvent e) {
this.window = new JFrame();
this.window.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
public void windowClosing(WindowEvent e) {
attachPane();
}
});
Expand Down

0 comments on commit bcfc787

Please sign in to comment.