summaryrefslogtreecommitdiff
path: root/src/cli/runtime/RestFn3.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-04-28 19:58:34 +0000
committerRich Hickey <richhickey@gmail.com>2006-04-28 19:58:34 +0000
commitbe2107e6816da54623058243797e6c52566f8f05 (patch)
tree6ad8d7c24b35f6162a48654a4f10d8ab9653c6b4 /src/cli/runtime/RestFn3.cs
parent8bdcea4f32a37bb7bb48bbf0e3be09708648b88d (diff)
made doInvoke public
Diffstat (limited to 'src/cli/runtime/RestFn3.cs')
-rw-r--r--src/cli/runtime/RestFn3.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/RestFn3.cs b/src/cli/runtime/RestFn3.cs
index 689ee565..91e5fac4 100644
--- a/src/cli/runtime/RestFn3.cs
+++ b/src/cli/runtime/RestFn3.cs
@@ -15,9 +15,9 @@ using System;
namespace org.clojure.runtime
{
-public abstract class RestFn3 : AFn{
-
-protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Cons rest) /*throws Exception*/;
+public abstract class RestFn3 : AFn{
+
+ public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Cons rest) /*throws Exception*/;
override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/
{