View Javadoc

1   package net.sf.statsvn.util;
2   
3   /**
4    * Basic implementation to nothingness.
5    *
6    * @author Benoit Xhenseval
7    * @version $Revision$
8    */
9   public class SilentLogger implements TaskLogger {
10  	/**
11  	 * log text to the System.out.
12  	 * @param text the text to log.
13  	 */
14  	public final void log(final String text) { // NOPMD
15  	}
16  
17  	public void error(final String arg) { // NOPMD
18  	}
19  
20  	public void info(final String arg) { // NOPMD
21  	}
22  }