Ticket #8902: doublecmp.diff
| File doublecmp.diff, 600 bytes (added by , 12 years ago) |
|---|
-
src/org/openstreetmap/josm/io/FileImporter.java
104 104 105 105 @Override 106 106 public int compareTo(FileImporter other) { 107 return (new Double(this.getPriority())).compareTo(other.getPriority());107 return Double.compare(this.getPriority(), other.getPriority()); 108 108 } 109 109 110 110 public static CBZip2InputStream getBZip2InputStream(InputStream in) throws IOException {
