@@ -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- InstallingComponent ( & ' a str , & ' a TargetTriple , Option < & ' a TargetTriple > ) ,
1918 RemovingComponent ( & ' a str , & ' a TargetTriple , Option < & ' a TargetTriple > ) ,
2019 RemovingOldComponent ( & ' a str , & ' a TargetTriple , Option < & ' a TargetTriple > ) ,
2120 DownloadingManifest ( & ' a str ) ,
@@ -71,7 +70,6 @@ impl Notification<'_> {
7170 match self {
7271 FileAlreadyDownloaded | DownloadingLegacyManifest => NotificationLevel :: Debug ,
7372 DownloadingComponent ( _, _, _, _)
74- | InstallingComponent ( _, _, _)
7573 | RemovingComponent ( _, _, _)
7674 | RemovingOldComponent ( _, _, _)
7775 | DownloadingManifest ( _)
@@ -123,13 +121,6 @@ impl Display for Notification<'_> {
123121 write ! ( f, "downloading component '{}' for '{}'" , c, t. unwrap( ) )
124122 }
125123 }
126- InstallingComponent ( c, h, t) => {
127- if Some ( h) == t. as_ref ( ) || t. is_none ( ) {
128- write ! ( f, "installing component '{c}'" )
129- } else {
130- write ! ( f, "installing component '{}' for '{}'" , c, t. unwrap( ) )
131- }
132- }
133124 RemovingComponent ( c, h, t) => {
134125 if Some ( h) == t. as_ref ( ) || t. is_none ( ) {
135126 write ! ( f, "removing component '{c}'" )
0 commit comments