You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2020/06/22 18:32:17 UTC

[commons-validator] branch master updated: Left-over debug

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
     new 67b7bbd  Left-over debug
67b7bbd is described below

commit 67b7bbd05d72344f19eea0e9a2d87ebe8f24643e
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jun 22 19:32:09 2020 +0100

    Left-over debug
---
 .../java/org/apache/commons/validator/routines/IBANValidatorTest.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java b/src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java
index 6e90e00..beb7450 100644
--- a/src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java
+++ b/src/test/java/org/apache/commons/validator/routines/IBANValidatorTest.java
@@ -223,7 +223,6 @@ public class IBANValidatorTest {
         IBANValidator validator = new IBANValidator();
         Validator[] vals = validator.getDefaultValidators();
         assertNotNull(vals);
-        System.out.println();
         for(int i=1; i < vals.length; i++) {
             if (vals[i].countryCode.compareTo(vals[i-1].countryCode) <= 0) {
                 fail("Not sorted: "+vals[i].countryCode+ " <= " + vals[i-1].countryCode);