Changeset 15990 in josm


Ignore:
Timestamp:
2020-03-01T23:36:11+01:00 (5 years ago)
Author:
simon04
Message:

see #18802 - KeyValueRegexpCondition: do not store value as string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java

    r15936 r15990  
    360360         */
    361361        public KeyValueRegexpCondition(String k, String v, Op op, boolean considerValAsKey) {
    362             super(k, v, op, considerValAsKey);
     362            super(k, "" /* v is not needed */, op, considerValAsKey);
    363363            CheckParameterUtil.ensureThat(!considerValAsKey, "considerValAsKey is not supported");
    364364            CheckParameterUtil.ensureThat(SUPPORTED_OPS.contains(op), "Op must be REGEX or NREGEX");
Note: See TracChangeset for help on using the changeset viewer.