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

remove extra whitespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java

    r8404 r8444  
    209209            else if (thisName.endsWith(inName)) {
    210210                int inNdx = thisName.lastIndexOf(inName);
    211                 if (thisName.charAt(inNdx-1) == '.' )
     211                if (thisName.charAt(inNdx-1) == '.')
    212212                    constraintType = NAME_WIDENS;
    213213                else
     
    215215            } else if (inName.endsWith(thisName)) {
    216216                int ndx = inName.lastIndexOf(thisName);
    217                 if (inName.charAt(ndx-1) == '.' )
     217                if (inName.charAt(ndx-1) == '.')
    218218                    constraintType = NAME_NARROWS;
    219219                else
Note: See TracChangeset for help on using the changeset viewer.