Ignore:
Timestamp:
2014-05-14T00:51:20+02:00 (10 years ago)
Author:
Don-vip
Message:

code refactoring/cleanup/javadoc + fix bug in preset text comparator in menu

File:
1 edited

Legend:

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

    r7089 r7119  
    6060        switch (this) {
    6161            case BZIP2:
    62                 return FileImporter.getBZip2InputStream(in);
     62                return Utils.getBZip2InputStream(in);
    6363            case GZIP:
    64                 return FileImporter.getGZipInputStream(in);
     64                return Utils.getGZipInputStream(in);
    6565            case ZIP:
    66                 return FileImporter.getZipInputStream(in);
     66                return Utils.getZipInputStream(in);
    6767            case NONE:
    6868            default:
Note: See TracChangeset for help on using the changeset viewer.