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

    r22370 r25635  
    8181    this.doc = this.converter.newDOM();
    8282    this.short_service_info = this.doc.createElement(GSXML.SERVICE_ELEM+GSXML.LIST_MODIFIER);
    83     this.format_info_map = new HashMap();
     83    this.format_info_map = new HashMap<String, Node>();
    8484
    8585    }
     
    407407    NodeList paramNodes = request.getElementsByTagName(GSXML.PARAM_ELEM);
    408408    if(paramNodes.getLength() > 0) {
    409         HashMap params = new HashMap(paramNodes.getLength());
     409        HashMap<String, String> params = new HashMap<String, String>(paramNodes.getLength());
    410410        for(int i = 0; i < paramNodes.getLength(); i++) {
    411411        Element param = (Element)paramNodes.item(i);
Note: See TracChangeset for help on using the changeset viewer.