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

    r25490 r25635  
    1717import java.util.Iterator;
    1818import java.io.File;
     19import java.io.Serializable;
    1920
    2021/** action class for retrieving parts of XML documents */
     
    4445        // extract the params from the cgi-request, and check that we have a coll specified
    4546        Element cgi_param_list = (Element) GSXML.getChildByTagName(request, GSXML.PARAM_ELEM + GSXML.LIST_MODIFIER);
    46         HashMap params = GSXML.extractParams(cgi_param_list, false);
     47        HashMap<String, Serializable> params = GSXML.extractParams(cgi_param_list, false);
    4748
    4849        String collection = (String) params.get(GSParams.COLLECTION);
Note: See TracChangeset for help on using the changeset viewer.