Ignore:
Timestamp:
2020-05-16T23:56:02+02:00 (4 years ago)
Author:
simon04
Message:

fix #18107 - ChangesetCacheManager: copy a list of changesets to clipboard

File:
1 edited

Legend:

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

    r14231 r16433  
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.data.osm;
     3
     4import static org.openstreetmap.josm.tools.I18n.tr;
    35
    46import java.util.ArrayList;
     
    490492        discussion.add(comment);
    491493    }
     494
     495    @Override
     496    public String toString() {
     497        return tr("Changeset") + " " + id + ": " + getComment();
     498    }
    492499}
Note: See TracChangeset for help on using the changeset viewer.