1
I was reading this answer where it talks about the use of EDT to manipulate swing components, but there is suggested to use one of the two methods cited to "dispatch" the interface to the EDT.
There is a difference between using SwingUtilities.invokeLater(Runnable)
or EventQueue.invokeLater(Runnable)
? There is a situation where it is better to use one or the other?