Changeset 20039 in osm for applications


Ignore:
Timestamp:
2010-02-16T20:19:38+01:00 (15 years ago)
Author:
ramack
Message:

strange month issue fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/globalsat/src/org/kaintoch/gps/globalsat/dg100/GpsRec.java

    r19859 r20039  
    315315        int YY = dg100Date - DD * 10000 - MM * 100;
    316316        dateTime = GregorianCalendar.getInstance();
    317         dateTime.set(2000 + YY, MM - 1, DD, hh, mm, ss); // this is somehoe strange (MM - 1) seems correct now, but last year I did not notice wrong behaviour without the "- 1"
     317        dateTime.set(2000 + YY, MM - 1, DD, hh, mm, ss); // this is somehow strange: (MM - 1) seems correct now, but last year I did not notice wrong behaviour without the "- 1"
    318318    }
    319319
Note: See TracChangeset for help on using the changeset viewer.