My whole program works completely fine ~400 lines of code including comments, but I have this at the bottom of my code. This is the last bit of code in my java program...
Is this okay to have, if not what should I do instead.
private static void End() {
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
MyClass m = new MyClass();
public void run() {
m.End();
}
});
}
}