@@ -15,7 +15,6 @@ pub(crate) enum Notification<'a> {
1515 CachedFileChecksumFailed ,
1616 /// The URL of the download is passed as the last argument, to allow us to track concurrent downloads.
1717 DownloadingComponent ( & ' a str , & ' a TargetTriple , Option < & ' a TargetTriple > , & ' a str ) ,
18- DownloadingLegacyManifest ,
1918 SkippingNightlyMissingComponent ( & ' a ToolchainDesc , & ' a Manifest , & ' a [ Component ] ) ,
2019 ForcingUnavailableComponent ( & ' a str ) ,
2120 StrayHash ( & ' a Path ) ,
@@ -64,7 +63,7 @@ impl Notification<'_> {
6463 pub ( crate ) fn level ( & self ) -> NotificationLevel {
6564 use self :: Notification :: * ;
6665 match self {
67- FileAlreadyDownloaded | DownloadingLegacyManifest => NotificationLevel :: Debug ,
66+ FileAlreadyDownloaded => NotificationLevel :: Debug ,
6867 DownloadingComponent ( _, _, _, _)
6968 | SkippingNightlyMissingComponent ( _, _, _)
7069 | RetryingDownload ( _) => NotificationLevel :: Info ,
@@ -113,7 +112,6 @@ impl Display for Notification<'_> {
113112 write ! ( f, "downloading component '{}' for '{}'" , c, t. unwrap( ) )
114113 }
115114 }
116- DownloadingLegacyManifest => write ! ( f, "manifest not found. trying legacy manifest" ) ,
117115 StrayHash ( path) => write ! (
118116 f,
119117 "removing stray hash found at '{}' in order to continue" ,
0 commit comments