Changeset 10763 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2016-08-07T18:07:59+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/osm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/ChangesetCache.java
r10657 r10763 68 68 } 69 69 70 pr otectedvoid fireChangesetCacheEvent(final ChangesetCacheEvent e) {70 private void fireChangesetCacheEvent(final ChangesetCacheEvent e) { 71 71 GuiHelper.runInEDT(() -> { 72 72 for (ChangesetCacheListener l: listeners) { … … 76 76 } 77 77 78 pr otectedvoid update(Changeset cs, DefaultChangesetCacheEvent e) {78 private void update(Changeset cs, DefaultChangesetCacheEvent e) { 79 79 if (cs == null) return; 80 80 if (cs.isNew()) return; … … 123 123 } 124 124 125 pr otectedvoid remove(int id, DefaultChangesetCacheEvent e) {125 private void remove(int id, DefaultChangesetCacheEvent e) { 126 126 if (id <= 0) return; 127 127 Changeset cs = cache.get(id); -
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r10658 r10763 112 112 * @param eastNorth east/north 113 113 */ 114 protectedvoid setCoorInternal(LatLon coor, EastNorth eastNorth) {114 void setCoorInternal(LatLon coor, EastNorth eastNorth) { 115 115 if (coor != null) { 116 116 this.lat = coor.lat();
Note:
See TracChangeset
for help on using the changeset viewer.