mirror of
https://github.com/TangentFoxy/semver.lua.git
synced 2025-07-28 02:52:21 +00:00
Remove custom print
This commit is contained in:
@@ -183,8 +183,6 @@ function mt:__eq(other)
|
|||||||
self.build == other.build
|
self.build == other.build
|
||||||
end
|
end
|
||||||
function mt:__lt(other)
|
function mt:__lt(other)
|
||||||
print(self.build, other.build, smallerBuild(self.build, other.build))
|
|
||||||
|
|
||||||
return self.major < other.major or
|
return self.major < other.major or
|
||||||
self.minor < other.minor or
|
self.minor < other.minor or
|
||||||
self.patch < other.patch or
|
self.patch < other.patch or
|
||||||
|
Reference in New Issue
Block a user