Fix some proposals

This commit is contained in:
Kerollmops
2025-07-15 17:10:45 +02:00
parent 2a015ac3b8
commit 0791506124
3 changed files with 6 additions and 12 deletions

View File

@ -130,12 +130,6 @@ pub enum PatternMatch {
NoMatch,
}
impl PatternMatch {
pub fn matches(&self) -> bool {
matches!(self, PatternMatch::Match)
}
}
#[cfg(test)]
mod tests {
use super::*;