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/PageAction.java

    r25128 r25635  
    1212import java.util.HashMap;
    1313import java.io.File;
     14import java.io.Serializable;
    1415
    1516import org.apache.log4j.*;
     
    130131        // extract the params from the cgi-request,
    131132        Element cgi_paramList = (Element) GSXML.getChildByTagName(request, GSXML.PARAM_ELEM + GSXML.LIST_MODIFIER);
    132         HashMap params = GSXML.extractParams(cgi_paramList, false);
     133        HashMap<String, Serializable> params = GSXML.extractParams(cgi_paramList, false);
    133134
    134135        String coll_name = (String) params.get(GSParams.COLLECTION);
     
    214215        // extract the params from the cgi-request,
    215216        Element cgi_paramList = (Element) GSXML.getChildByTagName(request, GSXML.PARAM_ELEM + GSXML.LIST_MODIFIER);
    216         HashMap params = GSXML.extractParams(cgi_paramList, false);
     217        HashMap<String, Serializable> params = GSXML.extractParams(cgi_paramList, false);
    217218
    218219        String coll_name = (String) params.get(GSParams.COLLECTION);
Note: See TracChangeset for help on using the changeset viewer.