Ignore:
Timestamp:
2015-11-23T01:09:15+01:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java

    r8996 r9059  
    708708        List<Relation> sortedRelations = new ArrayList<>(roles.keySet());
    709709        Collections.sort(sortedRelations, new Comparator<Relation>() {
    710             @Override public int compare(Relation o1, Relation o2) {
     710            @Override
     711            public int compare(Relation o1, Relation o2) {
    711712                int comp = Boolean.valueOf(o1.isDisabledAndHidden()).compareTo(o2.isDisabledAndHidden());
    712713                return comp != 0 ? comp : DefaultNameFormatter.getInstance().getRelationComparator().compare(o1, o2);
    713             }}
    714                 );
     714            }
     715        });
    715716
    716717        for (Relation r: sortedRelations) {
Note: See TracChangeset for help on using the changeset viewer.