Browse Source

Removed unused Array.Prototype.remove in boot.js

Nicolas Petton 12 years ago
parent
commit
0061f54c5f
1 changed files with 0 additions and 7 deletions
  1. 0 7
      js/boot.js

+ 0 - 7
js/boot.js

@@ -432,13 +432,6 @@ var nil = new SmalltalkNil();
 var smalltalk = new Smalltalk();
 var thisContext = undefined;
 
-/* Utilities */
-
-Array.prototype.remove = function(s){
-    var index = this.indexOf(s);
-    if(this.indexOf(s) != -1)this.splice(index, 1);
-}
-
 if(this.jQuery) {
     this.jQuery.allowJavaScriptCalls = true;
 }