Undgå generics
Hvordan skriver jeg det her om til 1.4?public int doStartTag() {
Hashtable<String, String> args = null;
try {
args = (Hashtable<String, String>) getValue("args");
if (args == null) {
setValue("args", new Hashtable<String, String>());
}
} catch (Exception e) {
LOG.error(e);
}
return EVAL_BODY_INCLUDE;
}
