Changeset 10619 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2016-07-24T00:19:35+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r10616 r10619 746 746 // lower the value of "stage" the earlier the plugin should be loaded. 747 747 // 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 } 755 753 ); 756 754 if (toLoad.isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.