Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/TextTagParser.java

    r10308 r10378  
    125125            while (pos < n) {
    126126                c = data.charAt(pos);
    127                 if (c == '\t' || c == '\n'  || c == ' ') {
     127                if (c == '\t' || c == '\n' || c == ' ') {
    128128                    pos++;
    129129                } else if (c == '=') {
     
    177177         String k;
    178178         String v;
    179          for (String  line: lines) {
     179         for (String line: lines) {
    180180            if (line.trim().isEmpty()) continue; // skip empty lines
    181181            Matcher m = p.matcher(line);
     
    195195         if (!tags.isEmpty()) {
    196196            return tags;
    197          }  else {
     197         } else {
    198198            return null;
    199199         }
Note: See TracChangeset for help on using the changeset viewer.