Ticket #19582: 19582-core.patch

File 19582-core.patch, 638 bytes (added by GerdP, 5 years ago)

Patch for core

  • src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java

     
    346346                }
    347347            } catch (InterruptedException | ExecutionException e) {
    348348                Logging.error(e);
     349                if (e.getCause() instanceof OsmTransferException)
     350                    throw (OsmTransferException) e.getCause();
    349351            }
    350352        }
    351353        exec.shutdown();