Changeset 13311 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2018-01-13T01:48:26+01:00 (6 years ago)
Author:
Don-vip
Message:

checkstyle

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
1 added
1 edited

Legend:

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

    r13252 r13311  
    12251225    }
    12261226
    1227     /** Quit parsing, when a certain condition is met */
    1228     private static class SAXReturnException extends SAXException {
    1229         private final String result;
    1230 
    1231         SAXReturnException(String result) {
    1232             this.result = result;
    1233         }
    1234 
    1235         public String getResult() {
    1236             return result;
    1237         }
    1238     }
    1239 
    12401227    /**
    12411228     * Reads the wiki page on a certain file in html format in order to find the real image URL.
Note: See TracChangeset for help on using the changeset viewer.