Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] fix Java 7 / unused code warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java

    r30532 r30737  
    150150                GpsRec last = null;
    151151                result = new GpxData();
    152                 Collection<WayPoint> seg = new ArrayList<WayPoint>(100);
     152                Collection<WayPoint> seg = new ArrayList<>(100);
    153153                for(GpsRec r:gpsRecList){
    154154                    if(canceled){
     
    217217    {
    218218        int nextIdx = 0;
    219         List<FileInfoRec> result = new ArrayList<FileInfoRec>(64);
     219        List<FileInfoRec> result = new ArrayList<>(64);
    220220        try{
    221221            do{
     
    232232    public List<GpsRec> readGpsRecList(List<FileInfoRec> fileInfoList) throws ConnectionException
    233233    {
    234         List<GpsRec> result = new ArrayList<GpsRec>(200);
     234        List<GpsRec> result = new ArrayList<>(200);
    235235
    236236        try{
Note: See TracChangeset for help on using the changeset viewer.