You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by md...@apache.org on 2003/06/02 06:27:27 UTC

cvs commit: jakarta-commons-sandbox/math/src/test/org/apache/commons/math/stat CertifiedDataTest.java

mdiggory    2003/06/01 21:27:27

  Modified:    math/src/test/org/apache/commons/math/stat
                        CertifiedDataTest.java
  Log:
  Removed System.out's
  
  Revision  Changes    Path
  1.2       +3 -9      jakarta-commons-sandbox/math/src/test/org/apache/commons/math/stat/CertifiedDataTest.java
  
  Index: CertifiedDataTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/test/org/apache/commons/math/stat/CertifiedDataTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CertifiedDataTest.java	2 Jun 2003 04:25:52 -0000	1.1
  +++ CertifiedDataTest.java	2 Jun 2003 04:27:26 -0000	1.2
  @@ -203,19 +203,13 @@
   			line = in.readLine();
   
   			while (line != null) {
  -				if(file.getName().equals("NumAcc4.dat")){
  -					System.out.println("Line: " + line);
  -					System.out.println("Mean: " + u.getMean()); 
  -					System.out.println("Std: " + u.getStandardDeviation()); 
  -				}				
  -				
  -				
  +
   				u.addValue(Double.parseDouble(line.trim()));
   				line = in.readLine();
   			}
   
   			in.close();
  -			System.out.println(" "); 
  +
   		} catch (FileNotFoundException fnfe) {
   			log.error(fnfe.getMessage(), fnfe);
   		} catch (IOException ioe) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org