Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (9 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/upload/ApiPreconditionCheckerHook.java

    r7529 r8444  
    3434            long maxNodes = api.getCapabilities().getMaxWayNodes();
    3535            if (maxNodes > 0) {
    36                 if( !checkMaxNodes(apiData.getPrimitivesToAdd(), maxNodes))
     36                if (!checkMaxNodes(apiData.getPrimitivesToAdd(), maxNodes))
    3737                    return false;
    38                 if( !checkMaxNodes(apiData.getPrimitivesToUpdate(), maxNodes))
     38                if (!checkMaxNodes(apiData.getPrimitivesToUpdate(), maxNodes))
    3939                    return false;
    40                 if( !checkMaxNodes(apiData.getPrimitivesToDelete(), maxNodes))
     40                if (!checkMaxNodes(apiData.getPrimitivesToDelete(), maxNodes))
    4141                    return false;
    4242            }
Note: See TracChangeset for help on using the changeset viewer.