patterns/pyc: Remove unused function

This commit is contained in:
Nik
2024-01-20 22:14:47 +01:00
committed by GitHub
parent 658ec20b37
commit 41d8967deb

View File

@@ -48,10 +48,6 @@ fn below(u8 major, u8 minor) {
return _major <=major && _minor < minor;
};
fn is(u8 major, u8 minor) {
return _major == major && _minor == minor;
};
fn between(u8 major, u8 minor, u8 otherMajor, u8 otherMinor) {
return above(major, minor) && below(otherMajor, otherMinor);
};