Remove duplicate containsXY fn

This commit is contained in:
Florent gravin
2018-09-19 16:51:43 +02:00
parent 8b83371272
commit 9c6e14b050

View File

@@ -255,15 +255,6 @@ class Geometry extends BaseObject {
return this;
}
/**
* @param {number} x X.
* @param {number} y Y.
* @return {boolean} Contains (x, y).
*/
containsXY(x, y) {
return false;
}
}