From 9a8f4e2a4430835b9ffe004d49ec8ac345ebfb8d Mon Sep 17 00:00:00 2001 From: kikito Date: Tue, 20 Oct 2015 10:01:21 +0200 Subject: [PATCH] Remove custom print --- semver.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/semver.lua b/semver.lua index 9c81c18..67a6046 100644 --- a/semver.lua +++ b/semver.lua @@ -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