Ignore:
Timestamp:
2011-08-11T00:26:21+02:00 (15 years ago)
Author:
stoecker
Message:

fix #6680, fix #6677 - i18n issues

File:
1 edited

Legend:

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

    r4191 r4310  
    7171            }
    7272            if (cancel)
    73                 throw new OsmTransferCancelledException();
     73                throw new OsmTransferCanceledException();
    7474            if (Main.pref.getBoolean("osm-server.use-compression", true)) {
    7575                activeConnection.setRequestProperty("Accept-Encoding", "gzip, deflate");
     
    9090
    9191                if (activeConnection.getResponseCode() == HttpURLConnection.HTTP_PROXY_AUTH)
    92                     throw new OsmTransferCancelledException();
     92                    throw new OsmTransferCanceledException();
    9393
    9494                String encoding = activeConnection.getContentEncoding();
Note: See TracChangeset for help on using the changeset viewer.