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

    r24393 r25635  
    9292     * XML element for stylesheet requests - map of service name to format elem
    9393     */
    94     protected HashMap format_info_map = null;
     94    protected HashMap<String, Node> format_info_map = null;
    9595
    9696    /**
     
    151151        this.doc = this.converter.newDOM();
    152152        this.short_service_info = this.doc.createElement(GSXML.SERVICE_ELEM + GSXML.LIST_MODIFIER);
    153         this.format_info_map = new HashMap();
     153        this.format_info_map = new HashMap<String, Node>();
    154154    }
    155155
Note: See TracChangeset for help on using the changeset viewer.