- Timestamp:
- 2021-04-13T21:12:10+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Instruction.java
r15983 r17770 10 10 import org.openstreetmap.josm.gui.mappaint.MapPaintStyles.IconReference; 11 11 import org.openstreetmap.josm.gui.mappaint.StyleKeys; 12 import org.openstreetmap.josm.tools.Logging; 12 13 13 14 /** … … 91 92 Object value; 92 93 if (val instanceof Expression) { 93 value = ((Expression) val).evaluate(env); 94 try { 95 value = ((Expression) val).evaluate(env); 96 } catch (RuntimeException ex) { 97 Logging.error(ex); 98 value = null; 99 } 94 100 } else { 95 101 value = val;
Note:
See TracChangeset
for help on using the changeset viewer.