fixed bug preventing use of non-string parameters like multiparts

This commit is contained in:
Keith Donald
2008-05-15 14:30:00 +00:00
parent 07a3f2b4b9
commit cce9e73aed

View File

@@ -446,8 +446,8 @@ public abstract class AbstractMvcView implements View {
}
public Object getValue(Object context) throws EvaluationException {
ParameterMap map = (ParameterMap) context;
return map.get(parameterName);
ParameterMap parameters = (ParameterMap) context;
return parameters.asMap().get(parameterName);
}
public Class getValueType(Object context) {