diff options
| author | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:58:34 +0000 |
|---|---|---|
| committer | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:58:34 +0000 |
| commit | be2107e6816da54623058243797e6c52566f8f05 (patch) | |
| tree | 6ad8d7c24b35f6162a48654a4f10d8ab9653c6b4 /src/cli/runtime/RestFn3.cs | |
| parent | 8bdcea4f32a37bb7bb48bbf0e3be09708648b88d (diff) | |
made doInvoke public
Diffstat (limited to 'src/cli/runtime/RestFn3.cs')
| -rw-r--r-- | src/cli/runtime/RestFn3.cs | 6 |
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*/ { |
