diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-07-04 20:51:55 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-07-04 20:51:55 +0000 |
commit | e5dcae7b0a24af84476b1192563fa149ad6a4a96 (patch) | |
tree | de065246d6ba57a2bd19fdea40d35092105b8eee /src/cli/runtime/ThreadLocalData.cs | |
parent | 84406ba09fe16b4b56b5ce40de33f8bee340a947 (diff) |
move transaction from tld, added global tcount, bigbang
Diffstat (limited to 'src/cli/runtime/ThreadLocalData.cs')
-rw-r--r-- | src/cli/runtime/ThreadLocalData.cs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cli/runtime/ThreadLocalData.cs b/src/cli/runtime/ThreadLocalData.cs index 61baa210..8d866bda 100644 --- a/src/cli/runtime/ThreadLocalData.cs +++ b/src/cli/runtime/ThreadLocalData.cs @@ -18,8 +18,6 @@ namespace clojure.lang public class ThreadLocalData{
[ThreadStatic]
-private static Transaction transaction;
-[ThreadStatic]
private static Object[] values;
static public Object[] getValues(){
@@ -30,13 +28,6 @@ static public void setValues(Object[] vals) { values = vals;
}
-static public Transaction getTransaction() {
- return transaction;
-}
-
-static public void setTransaction(Transaction t){
- transaction = t;
-}
} |