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

    r25352 r25635  
    1818import java.util.regex.Pattern;
    1919import java.io.File;
     20import java.io.Serializable;
    2021
    2122import net.tanesha.recaptcha.ReCaptchaImpl;
     
    230231        }
    231232
    232         HashMap params = GSXML.extractParams(paramList, true);
     233        HashMap<String, Serializable> params = GSXML.extractParams(paramList, true);
    233234
    234235        String username = (String) params.get("username");
     
    308309            return result; // Return the empty result
    309310        }
    310         HashMap paramMap = GSXML.extractParams(param_list, false);
     311        HashMap<String, Serializable> paramMap = GSXML.extractParams(param_list, false);
    311312        String op = (String) paramMap.get("authpage");
    312313        serviceNode.setAttribute("operation", op);
Note: See TracChangeset for help on using the changeset viewer.