Changeset 8444 in josm for trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java
- Timestamp:
- 2015-06-02T16:41:37+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java
r8404 r8444 209 209 else if (thisName.endsWith(inName)) { 210 210 int inNdx = thisName.lastIndexOf(inName); 211 if (thisName.charAt(inNdx-1) == '.' )211 if (thisName.charAt(inNdx-1) == '.') 212 212 constraintType = NAME_WIDENS; 213 213 else … … 215 215 } else if (inName.endsWith(thisName)) { 216 216 int ndx = inName.lastIndexOf(thisName); 217 if (inName.charAt(ndx-1) == '.' )217 if (inName.charAt(ndx-1) == '.') 218 218 constraintType = NAME_NARROWS; 219 219 else
Note:
See TracChangeset
for help on using the changeset viewer.
