| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SilentLogger |
|
| 1.0;1 |
| 1 | package net.sf.statsvn.util; | |
| 2 | ||
| 3 | /** | |
| 4 | * Basic implementation to nothingness. | |
| 5 | * | |
| 6 | * @author Benoit Xhenseval | |
| 7 | * @version $Revision$ | |
| 8 | */ | |
| 9 | 0 | 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 | 0 | } |
| 16 | ||
| 17 | public void error(final String arg) { // NOPMD | |
| 18 | 0 | } |
| 19 | ||
| 20 | public void info(final String arg) { // NOPMD | |
| 21 | 0 | } |
| 22 | } |