Changeset 36175 for main/trunk


Ignore:
Timestamp:
2022-05-10T14:36:20+12:00 (2 years ago)
Author:
kjdon
Message:

put solr first in the ordering

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/cdm/BuildTypeManager.java

    r36135 r36175  
    2828    static final public String BUILD_TYPE_SOLR_STR = "SOLR";
    2929
    30     static final public String[] BUILD_TYPES = {BUILD_TYPE_LUCENE, BUILD_TYPE_SOLR, BUILD_TYPE_MGPP, BUILD_TYPE_MG  };
     30    static final public String[] BUILD_TYPES = {BUILD_TYPE_SOLR, BUILD_TYPE_LUCENE, BUILD_TYPE_MGPP, BUILD_TYPE_MG  };
    3131
    3232    private EventListenerList listeners = null;
     
    205205
    206206        ButtonGroup build_type_group = new ButtonGroup();
     207            build_type_group.add(solr_button);
    207208        build_type_group.add(lucene_button);
    208             build_type_group.add(solr_button);
    209209        build_type_group.add(mgpp_button);
    210210        build_type_group.add(mg_button);
     
    225225        JPanel radio_pane = new JPanel();
    226226        radio_pane.setLayout(new GridLayout(4,1));
     227        radio_pane.add(solr_button);
    227228        radio_pane.add(lucene_button);
    228         radio_pane.add(solr_button);
    229229        radio_pane.add(mgpp_button);
    230230        radio_pane.add(mg_button);
Note: See TracChangeset for help on using the changeset viewer.