@@ -19,7 +19,6 @@ pub enum Notification<'a> {
19
19
ChecksumValid ( & ' a str ) ,
20
20
FileAlreadyDownloaded ,
21
21
CachedFileChecksumFailed ,
22
- RollingBack ,
23
22
ExtensionNotInstalled ( & ' a str ) ,
24
23
NonFatalError ( & ' a anyhow:: Error ) ,
25
24
MissingInstalledComponent ( & ' a str ) ,
@@ -98,7 +97,6 @@ impl Notification<'_> {
98
97
| RemovingComponent ( _, _, _)
99
98
| RemovingOldComponent ( _, _, _)
100
99
| ComponentAlreadyInstalled ( _)
101
- | RollingBack
102
100
| DownloadingManifest ( _)
103
101
| SkippingNightlyMissingComponent ( _, _, _)
104
102
| RetryingDownload ( _)
@@ -164,7 +162,6 @@ impl Display for Notification<'_> {
164
162
ChecksumValid ( _) => write ! ( f, "checksum passed" ) ,
165
163
FileAlreadyDownloaded => write ! ( f, "reusing previously downloaded file" ) ,
166
164
CachedFileChecksumFailed => write ! ( f, "bad checksum for cached download" ) ,
167
- RollingBack => write ! ( f, "rolling back changes" ) ,
168
165
ExtensionNotInstalled ( c) => write ! ( f, "extension '{c}' was not installed" ) ,
169
166
NonFatalError ( e) => write ! ( f, "{e}" ) ,
170
167
MissingInstalledComponent ( c) => {
0 commit comments