From 5a13488b113c70794e2623674e6cd0debc2719b9 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 1 May 2014 22:16:02 +0200 Subject: [PATCH] Stop adding ObjectEvent links manually Now that the links are removed from event annotations, we no longer need to do this, because inheritance works. --- apidoc/plugins/observable.js | 3 --- apidoc/plugins/todo.js | 3 --- 2 files changed, 6 deletions(-) diff --git a/apidoc/plugins/observable.js b/apidoc/plugins/observable.js index 772de2c7d4..3327573641 100644 --- a/apidoc/plugins/observable.js +++ b/apidoc/plugins/observable.js @@ -24,9 +24,6 @@ exports.defineTags = function(dictionary) { if (!doclet.fires) { doclet.fires = []; } - if (doclet.fires.indexOf('{@link ol.ObjectEvent} ol.event:ObjectEvent') === -1) { - doclet.fires.push('{@link ol.ObjectEvent} ol.event:ObjectEvent'); - } } }); }; diff --git a/apidoc/plugins/todo.js b/apidoc/plugins/todo.js index 0a76e89e6e..891371272d 100644 --- a/apidoc/plugins/todo.js +++ b/apidoc/plugins/todo.js @@ -25,9 +25,6 @@ exports.defineTags = function(dictionary) { if (!doclet.fires) { doclet.fires = []; } - if (doclet.fires.indexOf('{@link ol.ObjectEvent} ol.event:ObjectEvent') === -1) { - doclet.fires.push('{@link ol.ObjectEvent} ol.event:ObjectEvent'); - } } } });