View | Details | Raw Unified | Return to bug 41797
Collapse All | Expand All

(-)C:/workspaces/eniram/jasper-el/org/apache/el/lang/FunctionMapperImpl.java (-1 / +1 lines)
Lines 144-150 Link Here
144
        public Method getMethod() {
144
        public Method getMethod() {
145
            if (this.m == null) {
145
            if (this.m == null) {
146
                try {
146
                try {
147
                    Class t = Class.forName(this.owner);
147
                    Class t = ReflectionUtil.forName(this.owner);
148
                    Class[] p = ReflectionUtil.toTypeArray(this.types);
148
                    Class[] p = ReflectionUtil.toTypeArray(this.types);
149
                    this.m = t.getMethod(this.name, p);
149
                    this.m = t.getMethod(this.name, p);
150
                } catch (Exception e) {
150
                } catch (Exception e) {

Return to bug 41797