From f6d3c1a43b3d8e5eba527c321780fd0ea8bd4e86 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Mon, 14 Jan 2013 13:08:41 +0200 Subject: [PATCH] Remove now-useless array of classes from Aggregator. This was used to keep an array of classes in their original order, but now that the tests use the resulting Hash instead, it's no more needed. --- lib/jsduck/aggregator.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/jsduck/aggregator.rb b/lib/jsduck/aggregator.rb index d430f4ff..58427a3a 100644 --- a/lib/jsduck/aggregator.rb +++ b/lib/jsduck/aggregator.rb @@ -9,7 +9,6 @@ module JsDuck # class. class Aggregator def initialize - @documentation = [] @classes = {} @alt_names = {} @orphans = [] @@ -63,7 +62,6 @@ module JsDuck @current_class = old_cls else @current_class = cls - @documentation << cls @classes[cls[:name]] = cls # Register all alternate names of class for lookup too @@ -78,7 +76,6 @@ module JsDuck # it by merging the class with alt-name into this class. if @classes[altname] merge_classes(cls, @classes[altname]) - @documentation.delete(@classes[altname]) @classes.delete(altname) warn_alt_name(cls) end -- GitLab