diff --git a/src/ol/ol.js b/src/ol/ol.js index f91947d59b..a3b00d5047 100644 --- a/src/ol/ol.js +++ b/src/ol/ol.js @@ -256,14 +256,6 @@ ol.WEBGL_EXTENSIONS; // value is set in `ol.has` * var child = new ChildClass('a', 'b', 'see'); * child.foo(); // This works. * - * In addition, a superclass' implementation of a method can be invoked as - * follows: - * - * ChildClass.prototype.foo = function(a) { - * ChildClass.base(this, 'foo', a); - * // Other code here. - * }; - * * @param {!Function} childCtor Child constructor. * @param {!Function} parentCtor Parent constructor. * @function