Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (11 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/gpx/WayPoint.java

    r8376 r8510  
    6767
    6868    public final LatLon getCoor() {
    69         return new LatLon(lat,lon);
     69        return new LatLon(lat, lon);
    7070    }
    7171
     
    9595    @Override
    9696    public String toString() {
    97         return "WayPoint (" + (attr.containsKey(GPX_NAME) ? get(GPX_NAME) + ", " :"") + getCoor() + ", " + attr + ")";
     97        return "WayPoint (" + (attr.containsKey(GPX_NAME) ? get(GPX_NAME) + ", " : "") + getCoor() + ", " + attr + ")";
    9898    }
    9999
     
    105105            try {
    106106                time = dateParser.get().parse(get(PT_TIME).toString()).getTime() / 1000.; /* ms => seconds */
    107             } catch(Exception e) {
     107            } catch (Exception e) {
    108108                time = 0;
    109109            }
Note: See TracChangeset for help on using the changeset viewer.