I have this annotated class ``` java @EBean(scope = EBean.Scope.Singleton) public class HrWebServiceTask<T> extends Task<HrRequest, HrResponse<T>> { @RestService HrRestClient<T> restClient; @Override protected HrResponse<T> run(HrRequest request) throws Exception { return restClient.doRequest(request); } } ``` and it generates following code ` private void init_() { restClient = new HrRestClient<T>_(context_); rootContext = context_; createTaskRegistry(); } ` I get a compiler error for the code at `restClient = new HrRestClient<T>_(context_);` Shouldn't it be `restClient = new HrRestClient_<T>(context_);`
I have this annotated class
and it generates following code
private void init_() { restClient = new HrRestClient<T>_(context_); rootContext = context_; createTaskRegistry(); }I get a compiler error for the code at
restClient = new HrRestClient<T>_(context_);Shouldn't it be
restClient = new HrRestClient_<T>(context_);