Ignore:
Timestamp:
2015-06-20T14:36:00+02:00 (9 years ago)
Author:
Don-vip
Message:

fix many checkstyle violations

File:
1 edited

Legend:

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

    r8470 r8509  
    117117     */
    118118    @SuppressWarnings("resource")
    119     protected InputStream getInputStreamRaw(String urlStr, ProgressMonitor progressMonitor, String reason, boolean uncompressAccordingToContentDisposition) throws OsmTransferException {
     119    protected InputStream getInputStreamRaw(String urlStr, ProgressMonitor progressMonitor, String reason,
     120            boolean uncompressAccordingToContentDisposition) throws OsmTransferException {
    120121        try {
    121122            OnlineResource.JOSM_WEBSITE.checkOfflineAccess(urlStr, Main.getJOSMWebsite());
     
    159160            } catch (Exception e) {
    160161                Main.error(e);
    161                 OsmTransferException ote = new OsmTransferException(tr("Could not connect to the OSM server. Please check your internet connection."), e);
     162                OsmTransferException ote = new OsmTransferException(
     163                        tr("Could not connect to the OSM server. Please check your internet connection."), e);
    162164                ote.setUrl(url.toString());
    163165                throw ote;
Note: See TracChangeset for help on using the changeset viewer.