From e5dcf80f84f6e882fbddfca9bbf513f3204fb743 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 7 Jun 2002 19:50:52 +0000 Subject: [PATCH] made invokeDirectFunction public for benchmarking purposes. --- src/helma/framework/core/RequestEvaluator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/RequestEvaluator.java b/src/helma/framework/core/RequestEvaluator.java index 46cbe6b3..595e4ab8 100644 --- a/src/helma/framework/core/RequestEvaluator.java +++ b/src/helma/framework/core/RequestEvaluator.java @@ -526,7 +526,7 @@ public final class RequestEvaluator implements Runnable { return result; } - protected Object invokeDirectFunction (Object obj, String functionName, Object[] args) throws Exception { + public Object invokeDirectFunction (Object obj, String functionName, Object[] args) throws Exception { return scriptingEngine.invoke (obj, functionName, args); }