Ignore:
Timestamp:
2015-11-30T23:14:56+01:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle - Comments Indentation

File:
1 edited

Legend:

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

    r8928 r9073  
    215215        // tag1\tval1\ntag2\tval2\n
    216216        tags = readTagsByRegexp(buf, "[\\r\\n]+", ".*?([a-zA-Z0-9:_]+).*\\t(.*?)", false);
    217                 // try "tag\tvalue\n" format
     217        // try "tag\tvalue\n" format
    218218        if (tags != null) return tags;
    219219
     
    224224        // a = b=c  - this method of parsing fails intentionally
    225225        tags = readTagsByRegexp(buf, "[\\n\\t\\r]+", "(.*?)=(.*?)", true);
    226                 // try format  t1=v1\n t2=v2\n ...
     226        // try format  t1=v1\n t2=v2\n ...
    227227        if (tags != null) return tags;
    228228
Note: See TracChangeset for help on using the changeset viewer.