Changeset 7189 in josm
- Timestamp:
- 2014-05-29T15:01:30+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/FileWatcher.java
r7188 r7189 74 74 // (it returns the same key so it should not send events several times) 75 75 dir.toPath().register(watcher, StandardWatchEventKinds.ENTRY_MODIFY); 76 dir.toPath().register(watcher, StandardWatchEventKinds.ENTRY_CREATE); 76 77 styleMap.put(file.toPath(), style); 77 78 } … … 121 122 Main.worker.submit(new MapPaintStyleLoader(Collections.singleton(style))); 122 123 } else if (Main.isDebugEnabled()) { 123 Main.debug("Received ENTRY_MODIFYevent for unregistered file: "+fullPath);124 Main.debug("Received "+kind.name()+" event for unregistered file: "+fullPath); 124 125 } 125 126 }
Note:
See TracChangeset
for help on using the changeset viewer.