Ignore:
Timestamp:
2017-01-12T01:38:04+01:00 (9 years ago)
Author:
Don-vip
Message:

sonar - fb-contrib:BED_BOGUS_EXCEPTION_DECLARATION - Correctness - Non derivable method declares throwing an exception that isn't thrown

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/Capabilities.java

    r10632 r11453  
    242242
    243243        @Override
    244         public void startDocument() throws SAXException {
     244        public void startDocument() {
    245245            capabilities = new Capabilities();
    246246        }
    247247
    248248        @Override
    249         public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
     249        public void startElement(String namespaceURI, String localName, String qName, Attributes atts) {
    250250            for (int i = 0; i < atts.getLength(); i++) {
    251251                capabilities.put(qName, atts.getQName(i), atts.getValue(i));
Note: See TracChangeset for help on using the changeset viewer.