Changeset 6675 in josm


Ignore:
Timestamp:
2014-01-12T21:09:08+01:00 (10 years ago)
Author:
simon04
Message:

see #9566 - MapCSS validator: fix duplicated messages

File:
1 edited

Legend:

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

    r6670 r6675  
    357357                final String description = getDescriptionForMatchingSelector(matchingSelector);
    358358                if (fix != null) {
    359                     return new FixableTestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p, fix);
     359                    return new FixableTestError(null, getSeverity(), description, null, matchingSelector.toString(), 3000, p, fix);
    360360                } else {
    361                     return new TestError(null, getSeverity(), description, description, matchingSelector.toString(), 3000, p);
     361                    return new TestError(null, getSeverity(), description, null, matchingSelector.toString(), 3000, p);
    362362                }
    363363            } else {
Note: See TracChangeset for help on using the changeset viewer.