mirror of
https://github.com/nushell/nushell.git
synced 2025-04-01 03:36:53 +02:00
Remove ShellError::FlagNotFound (#11119)
# Description `ShellError::FlagNotFound` had a note that said it may be removable so this PR removes it instead of updating it to named fields per #10700 I can't see this error being used since it was introduced with #4364. I can't find why or where it was used before that date, though. There was a large merge with that PR but I can't penetrate the secrets of git to find out where its earlier history went. # User-Facing Changes None # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting N/A
This commit is contained in:
parent
8ad5d8bb6a
commit
1b54dd5418
@ -703,12 +703,6 @@ pub enum ShellError {
|
|||||||
#[diagnostic(code(nu::shell::alias_not_found))]
|
#[diagnostic(code(nu::shell::alias_not_found))]
|
||||||
AliasNotFound(#[label("alias not found")] Span),
|
AliasNotFound(#[label("alias not found")] Span),
|
||||||
|
|
||||||
/// A flag was not found.
|
|
||||||
#[error("Flag not found")]
|
|
||||||
#[diagnostic(code(nu::shell::flag_not_found))]
|
|
||||||
// NOTE: Seems to be unused. Removable?
|
|
||||||
FlagNotFound(String, #[label("{0} not found")] Span),
|
|
||||||
|
|
||||||
/// Failed to find a file during a nushell operation.
|
/// Failed to find a file during a nushell operation.
|
||||||
///
|
///
|
||||||
/// ## Resolution
|
/// ## Resolution
|
||||||
|
Loading…
Reference in New Issue
Block a user