1
Fork 0
mirror of https://github.com/RGBCube/is-even-u16 synced 2025-07-28 07:07:44 +00:00

Don't use an else statement at the end

This commit is contained in:
RGBCube 2024-03-07 11:54:02 +03:00
parent e422e56e91
commit 45b5295c65
No known key found for this signature in database

View file

@ -196603,7 +196603,6 @@ pub fn is_even_u16(n: u16) -> bool {
}
if n == 65534 {
return true;
} else {
}
return false;
}
}