From f4bb232279fbc53c089c0a40bb77badf82df0dfd Mon Sep 17 00:00:00 2001 From: drnextgis Date: Thu, 17 Mar 2016 12:50:52 +0600 Subject: [PATCH] remove inappropriate information from API docs --- src/ol/ol.js | 8 -------- 1 file changed, 8 deletions(-) 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