Changeset 35160 in osm for applications/editors/josm/plugins/geochat/src/geochat/JsonQueryUtil.java
- Timestamp:
- 2019-09-29T22:03:18+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geochat/src/geochat/JsonQueryUtil.java
r34512 r35160 90 90 public void run() { 91 91 if (EventQueue.isDispatchThread()) { 92 new Thread(new Runnable() { 93 @Override 94 public void run() { 95 doRealRun(); 96 } 97 }).start(); 92 new Thread(this::doRealRun).start(); 98 93 } else { 99 94 doRealRun();
Note:
See TracChangeset
for help on using the changeset viewer.