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
classLsqQuery {
@Iri(LSQ.Strs.hasRemoteExec)
<TextendsResource> Set<T> getRemoteExecutions(Class<T> itemClazz);
// This method has the same bean property name as the one above!Set<RemoteExecution> getRemoteExecutions();
}
Method descriptors are correctly genererated, however, MapperProxyUtils only uses two maps Map<String, Method> for read/write methods. Adding the dynamic collection getters as a third separate type (instead of conflating it with the map for getters) may be sufficient to fix the issue; needs to be investigated.
The text was updated successfully, but these errors were encountered:
Method descriptors are correctly genererated, however, MapperProxyUtils only uses two maps
Map<String, Method>
for read/write methods. Adding the dynamic collection getters as a third separate type (instead of conflating it with the map for getters) may be sufficient to fix the issue; needs to be investigated.The text was updated successfully, but these errors were encountered: