aboutsummaryrefslogtreecommitdiffstats
path: root/api/src/main/java/org/semver/Checker.java
diff options
context:
space:
mode:
authorJulien Eluard <[email protected]>2010-11-16 09:30:55 +0100
committerJulien Eluard <[email protected]>2010-11-16 09:30:55 +0100
commit1410b3327dea069e5b4f843604a946789132e114 (patch)
tree3590e1dfd49dc316146a3621b4dbd3fe613bbcc9 /api/src/main/java/org/semver/Checker.java
parent0516216def1aef8bb2447d18fa880bbfaf541975 (diff)
Cleanup.
Diffstat (limited to 'api/src/main/java/org/semver/Checker.java')
-rw-r--r--api/src/main/java/org/semver/Checker.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/api/src/main/java/org/semver/Checker.java b/api/src/main/java/org/semver/Checker.java
index f8b5ba8..e598327 100644
--- a/api/src/main/java/org/semver/Checker.java
+++ b/api/src/main/java/org/semver/Checker.java
@@ -82,11 +82,8 @@ public class Checker {
* @return true if specified {@link CompatibilityType}
*/
public static boolean isTypeCompatible(final CompatibilityType compatibilityType, final Version.Type type) {
- System.out.println("==="+compatibilityType);
switch (compatibilityType) {
case BACKWARD_COMPATIBLE_IMPLEMENTER:
- System.out.println("BACKWARD_COMPATIBLE_IMPLEMENTER!!");
- System.out.println(type.isAtLeast(Version.Type.PATCH));
return type.isAtLeast(Version.Type.PATCH);
case BACKWARD_COMPATIBLE_USER:
return type.isAtLeast(Version.Type.MINOR);