@@ -19,7 +19,6 @@ pub enum Notification<'a> {
1919 ChecksumValid ( & ' a str ) ,
2020 FileAlreadyDownloaded ,
2121 CachedFileChecksumFailed ,
22- RollingBack ,
2322 ExtensionNotInstalled ( & ' a str ) ,
2423 NonFatalError ( & ' a anyhow:: Error ) ,
2524 MissingInstalledComponent ( & ' a str ) ,
@@ -98,7 +97,6 @@ impl Notification<'_> {
9897 | RemovingComponent ( _, _, _)
9998 | RemovingOldComponent ( _, _, _)
10099 | ComponentAlreadyInstalled ( _)
101- | RollingBack
102100 | DownloadingManifest ( _)
103101 | SkippingNightlyMissingComponent ( _, _, _)
104102 | RetryingDownload ( _)
@@ -164,7 +162,6 @@ impl Display for Notification<'_> {
164162 ChecksumValid ( _) => write ! ( f, "checksum passed" ) ,
165163 FileAlreadyDownloaded => write ! ( f, "reusing previously downloaded file" ) ,
166164 CachedFileChecksumFailed => write ! ( f, "bad checksum for cached download" ) ,
167- RollingBack => write ! ( f, "rolling back changes" ) ,
168165 ExtensionNotInstalled ( c) => write ! ( f, "extension '{c}' was not installed" ) ,
169166 NonFatalError ( e) => write ! ( f, "{e}" ) ,
170167 MissingInstalledComponent ( c) => {
0 commit comments