diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/cplusplus/examples/example_mask.cc | 6 | ||||
-rw-r--r-- | doc/api/ruby/example_mask.rb | 3 | ||||
-rw-r--r-- | doc/faq/howdoi.html.part | 5 |
3 files changed, 0 insertions, 14 deletions
diff --git a/doc/api/cplusplus/examples/example_mask.cc b/doc/api/cplusplus/examples/example_mask.cc index c9fd67a33..8f2bd7c9e 100644 --- a/doc/api/cplusplus/examples/example_mask.cc +++ b/doc/api/cplusplus/examples/example_mask.cc @@ -61,12 +61,6 @@ namespace cout << left << setw(30) << " Class:" << " " << "UnsupportedMask" << endl; cout << left << setw(30) << " Explanation:" << " " << mask.explanation() << endl; } - - void visit(const AssociationMask & mask) - { - cout << left << setw(30) << " Class:" << " " << "AssociationMask" << endl; - cout << left << setw(30) << " Associated package:" << " " << mask.associated_package_spec() << endl; - } }; } diff --git a/doc/api/ruby/example_mask.rb b/doc/api/ruby/example_mask.rb index d8724db8a..fd99e64c8 100644 --- a/doc/api/ruby/example_mask.rb +++ b/doc/api/ruby/example_mask.rb @@ -39,9 +39,6 @@ ids.each do | id | elsif mask.kind_of? UnsupportedMask puts " Class: ".ljust(31) + 'UnsupportedMask' puts " Explanation: ".ljust(31) + mask.explanation - elsif mask.kind_of? AssociationMask - puts " Class: ".ljust(31) + 'AssociationMask' - puts " Associated package: ".ljust(31) + mask.associated_package_spec.to_s else puts " Class: ".ljust(31) + 'Unknown' end diff --git a/doc/faq/howdoi.html.part b/doc/faq/howdoi.html.part index a2395109f..019c28695 100644 --- a/doc/faq/howdoi.html.part +++ b/doc/faq/howdoi.html.part @@ -82,11 +82,6 @@ reasons:</p> <dt>license</dt> <dd>Accept the appropriate licences in <code>licenses.conf</code>.</dd> - - <dt>by association</dt> - - <dd>Unmask the associated package. This mask reason is currently only used - for old style virtuals.</dd> </dl> <h2 id="syncfromcvs">Sync from CVS</h2> |