Ignore:
Timestamp:
2017-08-26T15:40:47+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 12666

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/search/UtilsSimpleMatchFactory.java

    r33522 r33543  
    55import java.util.Collection;
    66
    7 import org.openstreetmap.josm.data.osm.search.SearchParseError;
    87import org.openstreetmap.josm.data.osm.search.PushbackTokenizer;
    98import org.openstreetmap.josm.data.osm.search.SearchCompiler;
    109import org.openstreetmap.josm.data.osm.search.SearchCompiler.SimpleMatchFactory;
     10import org.openstreetmap.josm.data.osm.search.SearchParseError;
    1111
    1212public class UtilsSimpleMatchFactory implements SimpleMatchFactory {
     
    2020
    2121    @Override
    22     public SearchCompiler.Match get(String keyword, PushbackTokenizer tokenizer) throws SearchParseError {
     22    public SearchCompiler.Match get(String keyword, boolean caseSensitive, boolean regexSearch, PushbackTokenizer tokenizer)
     23            throws SearchParseError {
    2324        if ("usedinways".equals(keyword)) {
    2425            return new UsedInWaysMatch(tokenizer);
Note: See TracChangeset for help on using the changeset viewer.