Changeset 17526 in josm for trunk/src/org


Ignore:
Timestamp:
2021-02-22T16:56:12+01:00 (4 years ago)
Author:
Don-vip
Message:

remove unneeded cast

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/FileWatcher.java

    r15738 r17526  
    5454        try {
    5555            watcher = FileSystems.getDefault().newWatchService();
    56             thread = new Thread((Runnable) this::processEvents, "File Watcher");
     56            thread = new Thread(this::processEvents, "File Watcher");
    5757        } catch (IOException | UnsupportedOperationException | UnsatisfiedLinkError e) {
    5858            Logging.error(e);
Note: See TracChangeset for help on using the changeset viewer.