Ignore:
Timestamp:
09.10.2011 03:05:35 (8 months 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.