Ignore:
Timestamp:
2016-12-23T15:19:47+01:00 (7 years ago)
Author:
Don-vip
Message:

fix #14151 - see #14042 - fix NPE properly (regression from r11306) + add robustness

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java

    r11306 r11416  
    202202        if (primitive != null) {
    203203            Changeset cs = primitive.getChangeset();
    204             if (cs != null) {
    205                 update(cs, model.isLatest(primitive), primitive.getTimestamp(), primitive.getVersion());
    206             }
     204            update(cs, model.isLatest(primitive), primitive.getTimestamp(), primitive.getVersion());
    207205        }
    208206    }
     
    219217    /**
    220218     * Updates the content of this panel based on the changeset information given by {@code cs}.
    221      * @param cs the changeset information - must not be null
     219     * @param cs the changeset information
    222220     * @param isLatest whether this relates to a not yet commited changeset
    223221     * @param timestamp the timestamp
     
    227225        lblInfo.setText(getInfoText(timestamp, version, isLatest));
    228226
    229         if (!isLatest) {
     227        if (!isLatest && cs != null) {
    230228            User user = cs.getUser();
    231229            String url = Main.getBaseBrowseUrl() + "/changeset/" + cs.getId();
     
    299297        @Override
    300298        public void actionPerformed(ActionEvent e) {
    301             ChangesetDialog.LaunchChangesetManager.displayChangesets(Collections.singleton(id));
     299            if (id != null) {
     300                ChangesetDialog.LaunchChangesetManager.displayChangesets(Collections.singleton(id));
     301            }
    302302            if (componentToSelect != null) {
    303303                ChangesetCacheManager.getInstance().setSelectedComponentInDetailPanel(componentToSelect);
Note: See TracChangeset for help on using the changeset viewer.