removes unused var def

This commit is contained in:
Keagan McClelland
2020-02-27 15:05:37 -07:00
parent 36c9c056ed
commit 7447f0b630

View File

@@ -5,7 +5,7 @@ import Startlude
import Lib.Types.Semver
(<||) :: HasAppVersion a => a -> AppVersionSpecification -> Bool
(<||) a AppVersionAny = True
(<||) _ AppVersionAny = True
(<||) a (AppVersionSpecification SVEquals av1) = version a == av1
(<||) a (AppVersionSpecification SVLessThan av1) = version a < av1
(<||) a (AppVersionSpecification SVGreaterThan av1) = version a > av1