refactor: Remove unused options method from SkipBytesFilter

This commit is contained in:
Andrew Phillips
2025-09-03 09:36:12 -03:00
committed by Andrew Phillips (aider)
parent 57413725c7
commit a76f3bfc56

View File

@@ -70,16 +70,6 @@ impl FilterPlugin for SkipBytesFilter {
}
]
}
fn options(&self) -> Vec<FilterOption> {
vec![
FilterOption {
name: "count".to_string(),
default: None,
required: true,
}
]
}
}
pub struct SkipLinesFilter {