From 23cd18804ac507ee778d4ddd4f91eb96d8a5d6a5 Mon Sep 17 00:00:00 2001 From: Pavel Reznikov Date: Mon, 22 Feb 2016 20:43:29 -0800 Subject: [PATCH] remove unused code --- src/gridstack.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/gridstack.js b/src/gridstack.js index 9880fc0..b5bc1d6 100644 --- a/src/gridstack.js +++ b/src/gridstack.js @@ -87,11 +87,6 @@ return n != this.node && Utils.isIntercepted(n, this.nn); }, - _didCollideFloat: function(bn) { - return this.n != bn && - Utils.isIntercepted({x: this.n.x, y: this.newY, width: this.n.width, height: this.n.height}, bn); - }, - _didCollide: function(bn) { return Utils.isIntercepted({x: this.n.x, y: this.newY, width: this.n.width, height: this.n.height}, bn); },