diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-01-26 21:58:57 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-01-26 21:58:57 +0100 |
commit | 02ceb810fe0de9b267a8b6a302505967afce6b5a (patch) | |
tree | ac1876d52a5fb44e51dddcdee1c734c11d00fddb /apt-pkg/edsp/edsplistparser.h | |
parent | 07aca07ae73016aa7823e708dda746eec8346989 (diff) |
remove unused Description methods in listparsers
These virtual methods are implemented in hidden classes, so we can drop
them without breaking the ABI.
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/edsp/edsplistparser.h')
-rw-r--r-- | apt-pkg/edsp/edsplistparser.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apt-pkg/edsp/edsplistparser.h b/apt-pkg/edsp/edsplistparser.h index 25363e1c7..691ac83ed 100644 --- a/apt-pkg/edsp/edsplistparser.h +++ b/apt-pkg/edsp/edsplistparser.h @@ -31,8 +31,7 @@ class APT_HIDDEN edspListParser : public debListParser edspListParserPrivate * const d; public: virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE; - virtual std::string Description(); - virtual std::string DescriptionLanguage(); + virtual std::vector<std::string> AvailableDescriptionLanguages() APT_OVERRIDE; virtual MD5SumValue Description_md5() APT_OVERRIDE; virtual unsigned short VersionHash() APT_OVERRIDE; |