From: Michael Vogt Date: Thu, 8 May 2014 12:31:10 +0000 (+0200) Subject: apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't fetched, so... X-Git-Tag: 1.1.exp1~23 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/722c387941f8d313fe18b61828fb82a0bbca5dad apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't fetched, so why bother --- diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc index ee6c4536f..4bcfd8f00 100644 --- a/apt-private/acqprogress.cc +++ b/apt-private/acqprogress.cc @@ -64,8 +64,6 @@ void AcqTextStatus::IMSHit(pkgAcquire::ItemDesc &Itm) cout << '\r' << BlankLine << '\r'; cout << _("Hit ") << Itm.Description; - if (Itm.Owner->FileSize != 0) - cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]"; cout << endl; Update = true; }