Changeset 17526 in josm
- Timestamp:
- 2021-02-22T16:56:12+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/FileWatcher.java
r15738 r17526 54 54 try { 55 55 watcher = FileSystems.getDefault().newWatchService(); 56 thread = new Thread( (Runnable)this::processEvents, "File Watcher");56 thread = new Thread(this::processEvents, "File Watcher"); 57 57 } catch (IOException | UnsupportedOperationException | UnsatisfiedLinkError e) { 58 58 Logging.error(e);
Note:
See TracChangeset
for help on using the changeset viewer.