Polishing

This commit is contained in:
Sam Brannen
2015-11-16 01:44:16 +01:00
parent d781ac0c92
commit 59d60c60cf
2 changed files with 2 additions and 3 deletions

View File

@@ -173,8 +173,8 @@ public final class MockMvc {
}
@Override
public ResultActions andDo(ResultHandler printer) throws Exception {
printer.handle(mvcResult);
public ResultActions andDo(ResultHandler handler) throws Exception {
handler.handle(mvcResult);
return this;
}