Changeset 15988 in josm for trunk/scripts
- Timestamp:
- 2020-03-01T23:36:07+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/TagInfoExtract.java
r15985 r15988 342 342 private List<TagInfoTag> convertStyleSheet() { 343 343 return styleSource.rules.stream() 344 .flatMap(rule -> rule.selector.getConditions().stream()) 344 .flatMap(rule -> rule.selectors.stream()) 345 .flatMap(selector -> selector.getConditions().stream()) 345 346 .filter(ConditionFactory.SimpleKeyValueCondition.class::isInstance) 346 347 .map(ConditionFactory.SimpleKeyValueCondition.class::cast)
Note:
See TracChangeset
for help on using the changeset viewer.