Changeset 17764 in josm
- Timestamp:
- 2021-04-13T13:26:01+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java
r17759 r17764 207 207 FACTORY_MAP.put("print", Factory.of(Object.class, Functions::print)); 208 208 FACTORY_MAP.put("println", Factory.of(Object.class, Functions::println)); 209 FACTORY_MAP.put("prop", Factory.ofEnv(String.class, Functions::prop));209 FACTORY_MAP.put("prop", Factory.ofEnv(String.class, String.class, Functions::prop, Functions::prop)); 210 210 FACTORY_MAP.put("red", Factory.of(Color.class, Functions::red)); 211 211 FACTORY_MAP.put("regexp_match", Factory.of(String.class, String.class, String.class, Functions::regexp_match, Functions::regexp_match));
Note:
See TracChangeset
for help on using the changeset viewer.