diff options
Diffstat (limited to 'src')
-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++) |