diff options
author | 2011-06-11 18:10:32 +0100 | |
---|---|---|
committer | 2011-06-11 19:13:23 +0100 | |
commit | 26a2fd96e1360ec5432aa5958b42aa72034a8512 (patch) | |
tree | 066f8bfa47f645a209caadc2f5a02604dca0e363 /doc | |
parent | 4c6e4d042a9088653c5463c4ea7afc49d8d50dd7 (diff) | |
download | paludis-26a2fd96e1360ec5432aa5958b42aa72034a8512.tar.gz paludis-26a2fd96e1360ec5432aa5958b42aa72034a8512.tar.xz |
PackageID::suggestions_key can go
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/ruby/example_dep_tree.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/api/ruby/example_dep_tree.rb b/doc/api/ruby/example_dep_tree.rb index ab56fdbcd..6249ba681 100644 --- a/doc/api/ruby/example_dep_tree.rb +++ b/doc/api/ruby/example_dep_tree.rb @@ -131,8 +131,7 @@ ids.each do | id | # IDs can potentially have four dependency-related keys. Each of thse keys # may return nil. If it doesn't, collect 'app-arch/unzip' dependencies. - [ :build_dependencies_key, :run_dependencies_key, :post_dependencies_key, - :suggested_dependencies_key ].each do | key | + [ :build_dependencies_key, :run_dependencies_key, :post_dependencies_key ].each do | key | if id.send(key) collect_dependencies(env, id, id.send(key).parse_value, results) end |