Big code clean-up, added interfaces, and colored text
This commit is contained in:
@@ -3,16 +3,9 @@ package org.lumijiez;
|
||||
import org.lumijiez.gui.MainFrame;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.io.IOException;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
try {
|
||||
new MainFrame().setVisible(true);
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
});
|
||||
SwingUtilities.invokeLater(() -> new MainFrame().setVisible(true));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user