Added comments

This commit is contained in:
nathan 2016-09-26 21:45:37 +02:00
parent 6a9b606e51
commit 19eb4df547

View File

@ -110,7 +110,8 @@ class SwingSystemTray extends dorkbox.systemTray.SystemTray {
}
protected
void dispatch(Runnable runnable) {
void dispatch(final Runnable runnable) {
// this will properly check if we are running on the EDT
SwingUtil.invokeLater(runnable);
}