]> git.saurik.com Git - apt.git/commitdiff
apt-pkg/deb/debindexfile.cc: remove tests for TranslationsAvailable() as this will...
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 9 Jun 2011 11:24:36 +0000 (13:24 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 9 Jun 2011 11:24:36 +0000 (13:24 +0200)
apt-pkg/deb/debindexfile.cc

index 1e8c040333b028def25e8330b484ab4cb15ac035..1d828c144de1a0cc52f299b8005f2a8c0666178f 100644 (file)
@@ -468,9 +468,6 @@ string debTranslationsIndex::Info(const char *Type) const
                                                                        /*}}}*/
 bool debTranslationsIndex::HasPackages() const                         /*{{{*/
 {
-   if(!TranslationsAvailable())
-      return false;
-   
    return FileExists(IndexFile(Language));
 }
                                                                        /*}}}*/
@@ -510,7 +507,7 @@ bool debTranslationsIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const
 {
    // Check the translation file, if in use
    string TranslationFile = IndexFile(Language);
-   if (TranslationsAvailable() && FileExists(TranslationFile))
+   if (FileExists(TranslationFile))
    {
      FileFd Trans(TranslationFile,FileFd::ReadOnlyGzip);
      debListParser TransParser(&Trans);