Changeset 13506 in josm for trunk/src/org
- Timestamp:
- 2018-03-04T19:42:31+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSStyleSource.java
r13037 r13506 59 59 import org.openstreetmap.josm.io.CachedFile; 60 60 import org.openstreetmap.josm.tools.CheckParameterUtil; 61 import org.openstreetmap.josm.tools.I18n; 61 62 import org.openstreetmap.josm.tools.JosmRuntimeException; 62 63 import org.openstreetmap.josm.tools.LanguageInfo; … … 515 516 zipFile = new ZipFile(file, StandardCharsets.UTF_8); 516 517 zipIcons = file; 518 I18n.addTextsZip(zipIcons); 517 519 ZipEntry zipEntry = zipFile.getEntry(zipEntryPath); 518 520 return zipFile.getInputStream(zipEntry); -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReader.java
r13332 r13506 43 43 import org.openstreetmap.josm.io.CachedFile; 44 44 import org.openstreetmap.josm.io.UTFInputStreamReader; 45 import org.openstreetmap.josm.tools.I18n; 45 46 import org.openstreetmap.josm.tools.Logging; 46 47 import org.openstreetmap.josm.tools.Utils; … … 343 344 if (zip != null) { 344 345 zipIcons = cf.getFile(); 346 I18n.addTextsZip(zipIcons); 345 347 } 346 348 try (InputStreamReader r = UTFInputStreamReader.create(zip == null ? cf.getInputStream() : zip)) {
Note:
See TracChangeset
for help on using the changeset viewer.