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

checkstyle: enable relevant whitespace checks and fix them

Location:
trunk/src/org/openstreetmap/josm/data/validation/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/util/Entities.java

    r8395 r8510  
    382382                        }
    383383                    } else { // escaped value content is an entity name
    384                         if(mapNameToValue == null) {
     384                        if (mapNameToValue == null) {
    385385                            mapNameToValue = new HashMap<>();
    386386                            for (String[] pair : ARRAY)
  • trunk/src/org/openstreetmap/josm/data/validation/util/ValUtil.java

    r8444 r8510  
    3333     * @return A list with all the cells the way starts or ends
    3434     */
    35     public static List<List<Way>> getWaysInCell(Way w, Map<Point2D,List<Way>> cellWays) {
     35    public static List<List<Way>> getWaysInCell(Way w, Map<Point2D, List<Way>> cellWays) {
    3636        if (w.getNodesCount() == 0)
    3737            return Collections.emptyList();
Note: See TracChangeset for help on using the changeset viewer.