Reinstate required parameter

This commit is contained in:
Madhura Bhave 2017-12-29 13:16:26 -08:00
parent 8102dc78cb
commit a46d1416ee
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public class DefaultErrorAttributesTests {
return ServerRequest.create(exchange, this.readers); return ServerRequest.create(exchange, this.readers);
} }
public int method() { public int method(String firstParam) {
return 42; return 42;
} }