Patch by Tuomas Kiviaho- tuomas.kiviahos at ikis fi
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@578466
13f79535-47bb-0310-9956-
ffa450edef68
public Method getMethod() {
if (this.m == null) {
try {
- Class t = Class.forName(this.owner);
+ Class t = ReflectionUtil.forName(this.owner);
Class[] p = ReflectionUtil.toTypeArray(this.types);
this.m = t.getMethod(this.name, p);
} catch (Exception e) {
<bug>43338</bug>: Support '*' servlet-name mapping at filter-mapping.
Patch provided by Keiichi Fujino. (pero)
</fix>
+ <fix>
+ <bug>41797</bug>: CNFE/NPE thrown from function mapper when externalizing
+ Patch by Tuomas Kiviaho- tuomas.kiviahos at ikis fi
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">