Given:
public class Controller1292 {
@GET
public String response() {
return "mvc";
}
}
Generates:
/** See {@link Controller1292#response() */
app.get("/", this::response)
.setReturnType(String.class)
.setMvcMethod(Controller1292.class.getMethod("response"));
These two option are now controlled by processor options: jooby.mvcMethod and jooby.returnType starting on next release these two options will be off by default (false). So output will be just:
/** See {@link Controller1292#response() */
app.get("/", this::response);
/cc @agentgt @kliushnichenko