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/deb | |
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/deb')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 20 | ||||
-rw-r--r-- | apt-pkg/deb/deblistparser.h | 4 |
2 files changed, 1 insertions, 23 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 63343005b..86fd5dc54 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -235,24 +235,6 @@ bool debListParser::NewVersion(pkgCache::VerIterator &Ver) return true; } /*}}}*/ -// ListParser::Description - Return the description string /*{{{*/ -// --------------------------------------------------------------------- -/* This is to return the string describing the package in debian - form. If this returns the blank string then the entry is assumed to - only describe package properties */ -string debListParser::Description(std::string const &lang) -{ - return Description(StringView(lang)).to_string(); -} - -StringView debListParser::Description(StringView lang) -{ - if (lang.empty()) - return Section.Find("Description"); - else - return Section.Find(string("Description-").append(lang.data(), lang.size())); -} - /*}}}*/ // ListParser::AvailableDescriptionLanguages /*{{{*/ std::vector<std::string> debListParser::AvailableDescriptionLanguages() { @@ -287,7 +269,7 @@ MD5SumValue debListParser::Description_md5() StringView const value = Section.Find("Description-md5"); if (value.empty() == true) { - StringView const desc = Description(StringView()); + StringView const desc = Section.Find("Description"); if (desc == "\n") return MD5SumValue(); diff --git a/apt-pkg/deb/deblistparser.h b/apt-pkg/deb/deblistparser.h index 4663c0119..1c5275e0a 100644 --- a/apt-pkg/deb/deblistparser.h +++ b/apt-pkg/deb/deblistparser.h @@ -73,10 +73,6 @@ class APT_HIDDEN debListParser : public pkgCacheListParser virtual bool ArchitectureAll() APT_OVERRIDE; virtual std::string Version() APT_OVERRIDE; virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE; - virtual std::string Description(std::string const &lang) APT_OVERRIDE; -#ifdef APT_PKG_EXPOSE_STRING_VIEW - APT::StringView Description(APT::StringView lang); -#endif virtual std::vector<std::string> AvailableDescriptionLanguages() APT_OVERRIDE; virtual MD5SumValue Description_md5() APT_OVERRIDE; virtual unsigned short VersionHash() APT_OVERRIDE; |