diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:42:56 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:42:56 +0000 |
commit | 4f72b81de88948e149af93dd96406e4f519e15c6 (patch) | |
tree | e4bdf36a13c6fbd2bee70eceada82aef7bf9b945 /src/cli/runtime/PersistentTree.cs | |
parent | 3e18fcb60b00f869f74b112af5b5d90b9a9edba0 (diff) |
added ISeq, ISequential, modified Cons
Diffstat (limited to 'src/cli/runtime/PersistentTree.cs')
-rw-r--r-- | src/cli/runtime/PersistentTree.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/PersistentTree.cs b/src/cli/runtime/PersistentTree.cs index 61f18157..b4686264 100644 --- a/src/cli/runtime/PersistentTree.cs +++ b/src/cli/runtime/PersistentTree.cs @@ -729,7 +729,7 @@ public void Reset() #endregion
} - /*
+ //*
[STAThread] static public void Main(String[] args){ if(args.Length != 1)
@@ -778,7 +778,7 @@ static public void Main(String[] args){ Console.Error.WriteLine("count = " + set.count());
Console.WriteLine("Building Hashtable");
- Hashtable od = new Hashtable(1001);
+ Hashtable od = Hashtable.Synchronized(new Hashtable(1001));
start = DateTime.Now;
for (int i = 0; i < ints.Length; i++)
{
|