- Timestamp:
- 2016-11-25T20:20:15+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java
r10413 r11306 202 202 if (primitive != null) { 203 203 Changeset cs = primitive.getChangeset(); 204 update(cs, model.isLatest(primitive), primitive.getTimestamp(), primitive.getVersion()); 204 if (cs != null) { 205 update(cs, model.isLatest(primitive), primitive.getTimestamp(), primitive.getVersion()); 206 } 205 207 } 206 208 } … … 217 219 /** 218 220 * Updates the content of this panel based on the changeset information given by {@code cs}. 219 * @param cs the changeset information 221 * @param cs the changeset information - must not be null 220 222 * @param isLatest whether this relates to a not yet commited changeset 221 223 * @param timestamp the timestamp
Note:
See TracChangeset
for help on using the changeset viewer.