Project

General

Profile

« Previous | Next » 

Revision 4485

Added by daigle over 15 years ago

Add some generic typing

View differences:

MetaCatUtil.java
82 82
     * from the value (e.g., name=tom&zip=99801 ). Returns a has of the name
83 83
     * value pairs, hashed on name.
84 84
     */
85
    public static Hashtable parseQuery(String query)
85
    public static Hashtable<String,String> parseQuery(String query)
86 86
            throws MalformedURLException
87 87
    {
88 88
        String[][] params = new String[200][2];
89
        Hashtable parameters = new Hashtable();
89
        Hashtable<String,String> parameters = new Hashtable<String,String>();
90 90

  
91 91
        String temp = "";
92 92
        boolean ampflag = true;

Also available in: Unified diff