Ignore:
Timestamp:
2009-12-28T00:14:33+01:00 (14 years ago)
Author:
Gubaer
Message:

Partial commit due to issue described in #4137
Breaks the build

File:
1 edited

Legend:

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

    r2512 r2686  
    99public class UserInfo {
    1010    /** the user id */
    11     private long id;
     11    private int id;
    1212    /** the display name */
    1313    private String displayName;
     
    2727    }
    2828
    29     public long getId() {
     29    public int getId() {
    3030        return id;
    3131    }
    32     public void setId(long id) {
     32    public void setId(int id) {
    3333        this.id = id;
    3434    }
Note: See TracChangeset for help on using the changeset viewer.