Index: applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java
===================================================================
--- applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java	(revision 30532)
+++ applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java	(revision 30737)
@@ -150,5 +150,5 @@
                 GpsRec last = null;
                 result = new GpxData();
-                Collection<WayPoint> seg = new ArrayList<WayPoint>(100);
+                Collection<WayPoint> seg = new ArrayList<>(100);
                 for(GpsRec r:gpsRecList){
                     if(canceled){
@@ -217,5 +217,5 @@
     {
         int nextIdx = 0;
-        List<FileInfoRec> result = new ArrayList<FileInfoRec>(64);
+        List<FileInfoRec> result = new ArrayList<>(64);
         try{
             do{
@@ -232,5 +232,5 @@
     public List<GpsRec> readGpsRecList(List<FileInfoRec> fileInfoList) throws ConnectionException
     {
-        List<GpsRec> result = new ArrayList<GpsRec>(200);
+        List<GpsRec> result = new ArrayList<>(200);
 
         try{
