Changeset 19108 in josm for trunk/scripts


Ignore:
Timestamp:
2024-06-17T19:37:02+02:00 (3 months ago)
Author:
taylor.smock
Message:

Cleanup some new PMD warnings from PMD 7.x (followup of r19101)

Location:
trunk/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/TagInfoExtract.java

    r19050 r19108  
    224224
    225225    private abstract class Extractor {
    226         abstract void run() throws Exception;
     226        abstract void run() throws IOException, OsmTransferException, ParseException, SAXException;
    227227
    228228        void writeJson(String name, String description, Iterable<TagInfoTag> tags) throws IOException {
  • trunk/scripts/TaggingPresetSchemeWikiGenerator.java

    r19050 r19108  
    3535    }
    3636
    37     public static void main(String[] args) throws Exception {
     37    public static void main(String[] args) throws IOException, ParserConfigurationException, SAXException, XPathExpressionException {
    3838        document = parseTaggingPresetSchema();
    3939        xPath = XPathFactory.newInstance().newXPath();
Note: See TracChangeset for help on using the changeset viewer.