diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-03-28 12:41:28 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-03-28 12:41:28 -0400 |
commit | 3260df439675f3442d4dcafe512a9a9dc70df4f0 (patch) | |
tree | 50423c60b23035fcc481d6ba8be57134b1395123 /src/library_gl.js | |
parent | 9f6f96462b2e0e00453a0a32dfcc14d6922254d7 (diff) |
Fix back hashtable.remove
Diffstat (limited to 'src/library_gl.js')
-rw-r--r-- | src/library_gl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index 8775194e..747e1342 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -29,7 +29,7 @@ var LibraryGL = { #if ASSERTIONS assert(id < this.counter, "Invalid id " + id + " for the hashtable " + name); #endif - //TODO delete this.table[id]; + delete this.table[id]; }, lookup: function(v) { for (var i = 1; i < this.counter; i++) |