Changeset 4104 in josm


Ignore:
Timestamp:
2011-05-30T09:58:49+02:00 (13 years ago)
Author:
bastiK
Message:

see #6233 (patch by brycenesbitt) - Updated elements not sorted in upload dialog (Add/Delete are fine)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/APIDataSet.java

    r4100 r4104  
    7272        sortDeleted();
    7373        sortNew();
     74        sortUpdated();
    7475    }
    7576
     
    133134        );
    134135    }
     136    /*
     137     * Sort list of updated elements, so it looks neat in the confirmation dialog.
     138     */
     139    protected void sortUpdated() {
     140        Collections.sort(
     141                toUpdate,
     142                new Comparator<OsmPrimitive>() {
     143                    public int compare(OsmPrimitive o1, OsmPrimitive o2) {
     144                        if (o1 instanceof Node && o2 instanceof Node)
     145                            return 0;
     146                        else if (o1 instanceof Node)
     147                            return -1;
     148                        else if (o2 instanceof Node)
     149                            return 1;
     150
     151                        if (o1 instanceof Way && o2 instanceof Way)
     152                            return 0;
     153                        else if (o1 instanceof Way && o2 instanceof Relation)
     154                            return -1;
     155                        else if (o2 instanceof Way && o1 instanceof Relation)
     156                            return 1;
     157
     158                        return 0;
     159                    }
     160                }
     161        );
     162    }
     163   
    135164    /**
    136165     * initializes the API data set with the modified primitives in <code>ds</code>
Note: See TracChangeset for help on using the changeset viewer.