Ignore:
Timestamp:
2019-01-01T15:48:40+01:00 (6 years ago)
Author:
donvip
Message:

update to JOSM 14347

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery-xml-bounds/src/net/boplicity/xmleditor/XmlTextPane.java

    r34076 r34803  
    8484                try {
    8585                    if (text.charAt(start) != NEW_LINE) {
    86                         while ((end < text.length())
    87                                 && (Character.isWhitespace(text.charAt(end)))
    88                                 && (text.charAt(end) != NEW_LINE)) {
     86                        while (end < text.length()
     87                                && Character.isWhitespace(text.charAt(end))
     88                                && text.charAt(end) != NEW_LINE) {
    8989                            end++;
    9090                        }
Note: See TracChangeset for help on using the changeset viewer.