@@ -15,7 +15,6 @@ pub(crate) enum Notification<'a> {
15
15
CachedFileChecksumFailed ,
16
16
/// The URL of the download is passed as the last argument, to allow us to track concurrent downloads.
17
17
DownloadingComponent ( & ' a str , & ' a TargetTriple , Option < & ' a TargetTriple > , & ' a str ) ,
18
- DownloadingLegacyManifest ,
19
18
SkippingNightlyMissingComponent ( & ' a ToolchainDesc , & ' a Manifest , & ' a [ Component ] ) ,
20
19
ForcingUnavailableComponent ( & ' a str ) ,
21
20
StrayHash ( & ' a Path ) ,
@@ -64,7 +63,7 @@ impl Notification<'_> {
64
63
pub ( crate ) fn level ( & self ) -> NotificationLevel {
65
64
use self :: Notification :: * ;
66
65
match self {
67
- FileAlreadyDownloaded | DownloadingLegacyManifest => NotificationLevel :: Debug ,
66
+ FileAlreadyDownloaded => NotificationLevel :: Debug ,
68
67
DownloadingComponent ( _, _, _, _)
69
68
| SkippingNightlyMissingComponent ( _, _, _)
70
69
| RetryingDownload ( _) => NotificationLevel :: Info ,
@@ -113,7 +112,6 @@ impl Display for Notification<'_> {
113
112
write ! ( f, "downloading component '{}' for '{}'" , c, t. unwrap( ) )
114
113
}
115
114
}
116
- DownloadingLegacyManifest => write ! ( f, "manifest not found. trying legacy manifest" ) ,
117
115
StrayHash ( path) => write ! (
118
116
f,
119
117
"removing stray hash found at '{}' in order to continue" ,
0 commit comments