Changeset 9734 in josm
- Timestamp:
- 2016-02-04T09:38:26+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java
r9733 r9734 625 625 if (latest == null) { 626 626 if (this.current == this.latest) { 627 this.current = history .getLatest();627 this.current = history != null ? history.getLatest() : null; 628 628 } 629 629 if (this.reference == this.latest) { 630 this.reference = history .getLatest();630 this.reference = history != null ? history.getLatest() : null; 631 631 } 632 632 this.latest = null; … … 644 644 645 645 /** 646 * Removes this model as listener for data change and layer change 647 * events. 646 * Removes this model as listener for data change and layer change events. 648 647 * 649 648 */
Note:
See TracChangeset
for help on using the changeset viewer.