You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
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_);