Ticket #8614: mapcss_and_preset_in_zip.patch
| File mapcss_and_preset_in_zip.patch, 1.1 KB (added by , 13 years ago) |
|---|
-
src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
212 212 MirroredInputStream in = null; 213 213 try { 214 214 in = new MirroredInputStream(entry.url); 215 InputStream zip = in.getZipEntry(" xml", "style");215 InputStream zip = in.getZipEntry("mapcss", "style"); 216 216 if (zip != null) 217 return new MapCSSStyleSource(entry); 218 zip = in.getZipEntry("xml", "style"); 219 if (zip != null) 217 220 return new XmlStyleSource(entry); 218 zip = in.getZipEntry("mapcss", "style");219 if (zip != null)220 return new MapCSSStyleSource(entry);221 221 if (entry.url.toLowerCase().endsWith(".mapcss")) 222 222 return new MapCSSStyleSource(entry); 223 223 if (entry.url.toLowerCase().endsWith(".xml"))
