Ignore:
Timestamp:
2011-10-09T03:05:35+02:00 (13 years ago)
Author:
Don-vip
Message:

fix #6938 - should enforce limit of 255 chars per changeset comment when uploading

File:
1 edited

Legend:

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

    r2686 r4508  
    1717 */
    1818public final class Changeset implements Tagged {
     19   
     20    /** The maximum changeset comment text length allowed by API 0.6 **/
     21    public static final int MAX_COMMENT_LENGTH = 255;
     22   
    1923    /** the changeset id */
    2024    private int id;
Note: See TracChangeset for help on using the changeset viewer.