This month I had four weird problems with Java methods running something in the UI thread like SwingUtilities.InvokeAndWait()
and Display.syncexec()
.
The code running these methods worked for years but now they just seem to run into a deadlock.
I searched for bugs that would explain that, but all I can find is the Swing Webstart Bug: NullPointerException in invokeLater while running through Java Webstart
To fix that, I used this solution: https://stackoverflow.com/a/20102779/1503901
Now to my question: Is this just my experience or is anyone facing the same problems? Could this be a bug, or is it just my code?
Thanks a Lot!