@@ -37,7 +37,6 @@ pub enum Notification<'a> {
37
37
StrayHash ( & ' a Path ) ,
38
38
SignatureInvalid ( & ' a str ) ,
39
39
RetryingDownload ( & ' a str ) ,
40
- LinkingDirectory ( & ' a Path , & ' a Path ) ,
41
40
CopyingDirectory ( & ' a Path , & ' a Path ) ,
42
41
RemovingDirectory ( & ' a str , & ' a Path ) ,
43
42
DownloadingFile ( & ' a Url , & ' a Path ) ,
@@ -123,7 +122,6 @@ impl Notification<'_> {
123
122
SignatureInvalid ( _) => NotificationLevel :: Warn ,
124
123
SetDefaultBufferSize ( _) => NotificationLevel :: Trace ,
125
124
RemovingDirectory ( _, _)
126
- | LinkingDirectory ( _, _)
127
125
| CopyingDirectory ( _, _)
128
126
| DownloadingFile ( _, _)
129
127
| DownloadContentLengthReceived ( _, _)
@@ -258,7 +256,6 @@ impl Display for Notification<'_> {
258
256
SignatureInvalid ( url) => write ! ( f, "Signature verification failed for '{url}'" ) ,
259
257
RetryingDownload ( url) => write ! ( f, "retrying download for '{url}'" ) ,
260
258
Error ( e) => write ! ( f, "error: '{e}'" ) ,
261
- LinkingDirectory ( _, dest) => write ! ( f, "linking directory from: '{}'" , dest. display( ) ) ,
262
259
CopyingDirectory ( src, _) => write ! ( f, "copying directory from: '{}'" , src. display( ) ) ,
263
260
RemovingDirectory ( name, path) => {
264
261
write ! ( f, "removing {} directory: '{}'" , name, path. display( ) )
0 commit comments