Remove custom print

This commit is contained in:
kikito 2015-10-20 10:01:21 +02:00
parent fd8229383a
commit 9a8f4e2a44

View File

@ -183,8 +183,6 @@ function mt:__eq(other)
self.build == other.build
end
function mt:__lt(other)
print(self.build, other.build, smallerBuild(self.build, other.build))
return self.major < other.major or
self.minor < other.minor or
self.patch < other.patch or