Changeset 7089 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2014-05-09T14:36:55+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r7082 r7089 598 598 599 599 private static ImageResource getIfAvailableZip(String fullName, File archive, String inArchiveDir, ImageType type) { 600 try (ZipFile zipFile = new ZipFile(archive )) {600 try (ZipFile zipFile = new ZipFile(archive, StandardCharsets.UTF_8)) { 601 601 if (inArchiveDir == null || ".".equals(inArchiveDir)) { 602 602 inArchiveDir = "";
Note:
See TracChangeset
for help on using the changeset viewer.