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/action/ProcessAction.java

    r24993 r25635  
    1313import java.util.Iterator;
    1414import java.io.File;
     15import java.io.Serializable;
    1516
    1617public class ProcessAction extends Action
     
    3334        // get the param list
    3435        Element cgi_param_list = (Element) GSXML.getChildByTagName(request, GSXML.PARAM_ELEM + GSXML.LIST_MODIFIER);
    35         HashMap params = GSXML.extractParams(cgi_param_list, false);
     36        HashMap<String, Serializable> params = GSXML.extractParams(cgi_param_list, false);
    3637        String service_name = (String) params.get(GSParams.SERVICE);
    3738        String cluster_name = (String) params.get(GSParams.CLUSTER);
Note: See TracChangeset for help on using the changeset viewer.