Ignore:
Timestamp:
2020-04-19T14:54:59+02:00 (4 years ago)
Author:
simon04
Message:

see #18164 - Rename class to SearchCompilerQueryWizard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/OverpassQueryWizardDialog.java

    r16355 r16358  
    1616import org.openstreetmap.josm.gui.download.overpass.OverpassWizardRegistration.OverpassWizardCallbacks;
    1717import org.openstreetmap.josm.tools.Logging;
    18 import org.openstreetmap.josm.tools.OverpassTurboQueryWizard;
     18import org.openstreetmap.josm.tools.SearchCompilerQueryWizard;
    1919import org.openstreetmap.josm.tools.UncheckedParseException;
    2020import org.openstreetmap.josm.tools.Utils;
     
    8282
    8383    /**
    84      * Tries to process a search term using {@link OverpassTurboQueryWizard}. If the term cannot
     84     * Tries to process a search term using {@link SearchCompilerQueryWizard}. If the term cannot
    8585     * be parsed, the the corresponding dialog is shown.
    8686     * @param searchTerm The search term to parse.
     
    9191    private Optional<String> tryParseSearchTerm(String searchTerm) {
    9292        try {
    93             return Optional.of(OverpassTurboQueryWizard.getInstance().constructQuery(searchTerm));
     93            return Optional.of(SearchCompilerQueryWizard.getInstance().constructQuery(searchTerm));
    9494        } catch (UncheckedParseException | IllegalStateException ex) {
    9595            Logging.error(ex);
Note: See TracChangeset for help on using the changeset viewer.