Fix javaDoc comment (#720)

Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com>
This commit is contained in:
Jeroen Laverman
2018-08-15 09:30:31 +02:00
committed by GitHub
parent 31c6102759
commit b2558233b5

View File

@@ -22,15 +22,14 @@ public abstract class MockMvcResultPrinter {
} }
/** /**
* Print {@link MvcResult} details to the "standard" output stream. * Print {@link MvcResult} details to logger.
*/ */
public static ResultHandler print() { public static ResultHandler print() {
return new ConsolePrintingResultHandler(); return new ConsolePrintingResultHandler();
} }
/** /**
* An {@link PrintingResultHandler} that writes to the "standard" output * An {@link PrintingResultHandler} that writes to logger
* stream
*/ */
private static class ConsolePrintingResultHandler extends PrintingResultHandler { private static class ConsolePrintingResultHandler extends PrintingResultHandler {