@@ -26,7 +26,6 @@ pub(crate) enum Notification<'a> {
2626     /// member, but the notification callback is already narrowed to 
2727     /// utils::notifications by the time tar unpacking is called. 
2828     SetDefaultBufferSize ( usize ) , 
29-     SetAutoInstall ( & ' a  str ) , 
3029    SetDefaultToolchain ( Option < & ' a  ToolchainName > ) , 
3130    SetOverrideToolchain ( & ' a  Path ,  & ' a  str ) , 
3231    SetProfile ( & ' a  str ) , 
@@ -70,8 +69,7 @@ impl Notification<'_> {
7069            | ReadMetadataVersion ( _) 
7170            | InstalledToolchain ( _) 
7271            | UpdateHashMatches  => NotificationLevel :: Debug , 
73-             SetAutoInstall ( _) 
74-             | SetDefaultToolchain ( _) 
72+             SetDefaultToolchain ( _) 
7573            | SetOverrideToolchain ( _,  _) 
7674            | SetProfile ( _) 
7775            | SetSelfUpdate ( _) 
@@ -108,7 +106,6 @@ impl Display for Notification<'_> {
108106            DownloadDataReceived ( data,  _)  => write ! ( f,  "received some data of size {}" ,  data. len( ) ) , 
109107            DownloadFinished ( _)  => write ! ( f,  "download finished" ) , 
110108            DownloadFailed ( _)  => write ! ( f,  "download failed" ) , 
111-             SetAutoInstall ( auto)  => write ! ( f,  "auto install set to '{auto}'" ) , 
112109            SetDefaultToolchain ( None )  => write ! ( f,  "default toolchain unset" ) , 
113110            SetDefaultToolchain ( Some ( name) )  => write ! ( f,  "default toolchain set to '{name}'" ) , 
114111            SetOverrideToolchain ( path,  name)  => write ! ( 
0 commit comments