Changeset 16287 in josm for trunk/src/org
- Timestamp:
- 2020-04-13T14:48:43+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java
r16199 r16287 360 360 */ 361 361 public KeyValueRegexpCondition(String k, String v, Op op, boolean considerValAsKey) { 362 super(k, "" /* v is not needed */, op, considerValAsKey);362 super(k, v, op, considerValAsKey); /* value is needed in validator messages */ 363 363 CheckParameterUtil.ensureThat(!considerValAsKey, "considerValAsKey is not supported"); 364 364 CheckParameterUtil.ensureThat(SUPPORTED_OPS.contains(op), "Op must be REGEX or NREGEX");
Note:
See TracChangeset
for help on using the changeset viewer.