diff options
Diffstat (limited to 'src/cli/runtime/Obj.cs')
-rw-r--r-- | src/cli/runtime/Obj.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/Obj.cs b/src/cli/runtime/Obj.cs index 8f73335e..45c5edfa 100644 --- a/src/cli/runtime/Obj.cs +++ b/src/cli/runtime/Obj.cs @@ -22,7 +22,7 @@ public class Obj : IObj HybridDictionary attrs; public static int INITIAL_SIZE = 7;
-public Object put(IComparable key, Object val) +public Object put(ThreadLocalData tld, IComparable key, Object val) { if(attrs == null) attrs = new HybridDictionary(INITIAL_SIZE); @@ -30,14 +30,14 @@ public Object put(IComparable key, Object val) return val; }
-public Object get(IComparable key) +public Object get(ThreadLocalData tld, IComparable key) { if(attrs == null) return null; return attrs[key]; }
-public bool has(IComparable key)
+public bool has(ThreadLocalData tld, IComparable key)
{
if (attrs == null)
return false;
|