User: schaefera
  Date: 01/12/07 14:48:10

  Modified:    src/main/org/jboss/survey/util Helper.java
  Log:
  Removed System.out.println() from the JBoss Survey.
  
  Revision  Changes    Path
  1.2       +2 -6      website-survey/src/main/org/jboss/survey/util/Helper.java
  
  Index: Helper.java
  ===================================================================
  RCS file: /cvsroot/jboss/website-survey/src/main/org/jboss/survey/util/Helper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Helper.java       2001/10/02 21:34:57     1.1
  +++ Helper.java       2001/12/07 22:48:10     1.2
  @@ -1,9 +1,9 @@
   // ----------------------------------------------------------------------------
   // File: Helper.java
   // Copyright ( c ) 2001 eBuilt, Inc.  All rights reserved.
  -// Version: $Revision: 1.1 $
  -// Last Checked In: $Date: 2001/10/02 21:34:57 $
  -// Last Checked In By: $Author: user57 $
  +// Version: $Revision: 1.2 $
  +// Last Checked In: $Date: 2001/12/07 22:48:10 $
  +// Last Checked In By: $Author: schaefera $
   
   package org.jboss.survey.util;
   
  @@ -22,7 +22,7 @@
    * Contains some static helper methods
    *
    * @author Andreas Schaefer
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    **/
   public class Helper
   {
  @@ -156,17 +156,14 @@
            
            if ( aMonth == BOGUS_NUMBER || aMonth > 12 || aMonth < 1 )
            {
  -            System.out.println("Bogus month: " + aMonth);
               return false;
            }
            if ( aDate == BOGUS_NUMBER || aDate > 31 || aDate < 1 )
            {
  -            System.out.println("Bogus date: " + aDate);
               return false;
            }
            if ( aYear == null || aYear.length() < 4 )
            {
  -            System.out.println("Bogus year: " + aYear);
               return false;
            }
         
  @@ -176,7 +173,6 @@
            }
            catch ( ParseException pPE )
            {
  -            System.out.println( "Exception checking date: " + pPE.getMessage() );
               return false;
            }
            
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to