Skip to content

Commit

Permalink
Non empty fix 3
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasticLizard committed Feb 16, 2011
1 parent b85535e commit f288f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wonkavision/plugins/analytics/cellset/dimension.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def initialize(axis,name,definition,members)
end

def non_empty(*parents)
members.reject { |mem| key = parents << mem.key; axis[key].empty? }
members.reject { |mem| key = parents.dup << mem.key; axis[key].empty? }
end

end
Expand Down

0 comments on commit f288f2e

Please sign in to comment.