I have two seperate codes, one is:
Platform.runLater(new Runnable() {
public void run() {
}
});
The other one is
SwingUtilities.invokeLater(new Runnable() {
public void run() {
}
});
I want to know what the difference between the two are, and when to use one or the other or if they mean the exact same thing. Thanks for your help!