Ignore:
Timestamp:
2016-07-24T00:19:35+02:00 (8 years ago)
Author:
Don-vip
Message:

see #11390 - Java 8: use List.sort(Comparator) instead of Collections.sort(list, Comparator)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r10616 r10619  
    746746            // lower the value of "stage" the earlier the plugin should be loaded.
    747747            //
    748             Collections.sort(
    749                     toLoad,
    750                     (o1, o2) -> {
    751                         if (o1.stage < o2.stage) return -1;
    752                         if (o1.stage == o2.stage) return 0;
    753                         return 1;
    754                     }
     748            toLoad.sort((o1, o2) -> {
     749                    if (o1.stage < o2.stage) return -1;
     750                    if (o1.stage == o2.stage) return 0;
     751                    return 1;
     752                }
    755753            );
    756754            if (toLoad.isEmpty())
Note: See TracChangeset for help on using the changeset viewer.