Index: applications/editors/josm/plugins/globalsat/src/org/kaintoch/gps/globalsat/dg100/GpsRec.java
===================================================================
--- applications/editors/josm/plugins/globalsat/src/org/kaintoch/gps/globalsat/dg100/GpsRec.java	(revision 19857)
+++ applications/editors/josm/plugins/globalsat/src/org/kaintoch/gps/globalsat/dg100/GpsRec.java	(revision 19859)
@@ -314,7 +314,6 @@
         int MM = (dg100Date - DD * 10000) / 100;
         int YY = dg100Date - DD * 10000 - MM * 100;
-        System.out.println("DD = " + new Integer(DD).toString());
         dateTime = GregorianCalendar.getInstance();
-        dateTime.set(2000 + YY, MM, DD, hh, mm, ss);
+        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"
     }
 
