Ignore:
Timestamp:
28.12.2009 00:15:22 (2 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/io/OsmServerUserInfoReader.java

    r2512 r2688  
    5353                throw new OsmDataParsingException(tr("Missing attribute ''{0}'' on XML tag ''{1}''.", "id", "user")); 
    5454            try { 
    55                 userInfo.setId(Long.parseLong(v)); 
     55                userInfo.setId(Integer.parseInt(v)); 
    5656            } catch(NumberFormatException e) { 
    5757                throw new OsmDataParsingException(tr("Illegal value for attribute ''{0}'' on XML tag ''{1}''. Got {2}.", "id", "user", v)); 
Note: See TracChangeset for help on using the changeset viewer.