Ignore:
Timestamp:
2017-04-16T01:16:21+02:00 (7 years ago)
Author:
Don-vip
Message:

see #14653 - fix NoSuchMethodException

File:
1 edited

Legend:

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

    r11919 r11924  
    236236            if (readerClass != null) {
    237237                try {
    238                     reader = readerClass.getConstructor().newInstance();
     238                    reader = readerClass.getDeclaredConstructor().newInstance();
    239239                } catch (ReflectiveOperationException | IllegalArgumentException | SecurityException e) {
    240240                    Main.error(e);
Note: See TracChangeset for help on using the changeset viewer.