diff --git a/src/mousetracker.js b/src/mousetracker.js index 0a8c36c1..4e96d23b 100644 --- a/src/mousetracker.js +++ b/src/mousetracker.js @@ -1400,20 +1400,8 @@ * @function */ removeContact: function() { - if ( - (this.type === "mouse" || - this.type === "pen" || - this.type === "touch") && - this.contacts > 0 - ) { + if ( this.contacts > 0 ) { --this.contacts; - - if (this.contacts < 0) { - $.console.warn( - "GesturePointList.removeContact() Implausible contacts value" - ); - this.contacts = 0; - } } } };