diff options
author | Lorant Pinter <lorant.pinter@prezi.com> | 2013-03-03 02:28:58 +0100 |
---|---|---|
committer | Lorant Pinter <lorant.pinter@prezi.com> | 2013-03-03 02:28:58 +0100 |
commit | 51ed6bf49f1f4186de7c07fab50bab5c1f70c643 (patch) | |
tree | 5615567456cd133a087e0862b8824110becd2d37 /src/runtime.js | |
parent | aa6f0ec91d5bc8727e9ab4a3c2f7286005e45929 (diff) |
No need for 'func' parameter
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.js b/src/runtime.js index fad09a80..3936563e 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -365,7 +365,7 @@ var Runtime = { return ret; }, - removeFunction: function(index, func) { + removeFunction: function(index) { var table = FUNCTION_TABLE; // TODO: support asm table[index] = null; }, |