Changeset 12883 in josm for trunk


Ignore:
Timestamp:
2017-09-21T17:11:07+02:00 (7 years ago)
Author:
Don-vip
Message:

fix #15341 - better error message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java

    r12846 r12883  
    329329                        } else if ("fixRemove".equals(ai.key)) {
    330330                            CheckParameterUtil.ensureThat(!(ai.val instanceof String) || !(val != null && val.contains("=")),
    331                                     "Unexpected '='. Please only specify the key to remove!");
     331                                    "Unexpected '='. Please only specify the key to remove in: " + ai);
    332332                            check.fixCommands.add(FixCommand.fixRemove(ai.val));
    333333                        } else if (val != null && "fixChangeKey".equals(ai.key)) {
Note: See TracChangeset for help on using the changeset viewer.