Ignore:
Timestamp:
2012-05-22T13:01:04+12:00 (12 years ago)
Author:
sjm84
Message:

Fixing Greenstone 3's use (or lack thereof) of generics, this was done automatically so we may want to change it over time. This change will also auto-format any files that have not already been formatted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/service/GS2LuceneSearch.java

    r24738 r25635  
    3030import java.util.HashMap;
    3131import java.io.File;
     32import java.io.Serializable;
    3233import java.util.Iterator;
    3334import java.util.Set;
     
    6263
    6364    /** do any initialisation of the query object */
    64     protected boolean setUpQueryer(HashMap params) {
     65    protected boolean setUpQueryer(HashMap<String, Serializable> params) {
    6566    String indexdir = GSFile.collectionBaseDir(this.site_home, this.cluster_name) + File.separatorChar + "index"+File.separatorChar;
    6667   
     
    173174
    174175    /** add in term info if available */
    175     protected boolean addTermInfo(Element term_list, HashMap params,
     176    protected boolean addTermInfo(Element term_list, HashMap<String, Serializable> params,
    176177                  Object query_result) {
    177178    String query_level = (String)params.get(LEVEL_PARAM); // the current query level
Note: See TracChangeset for help on using the changeset viewer.