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
HqdmObjectFactory throws NPE when a dynamic entity is requested with the same interface specified more than once.
This is because the DynamicObjects class swallows an exception and returns null when it should probably propagate the exception to the callers so that the root cause isn't hidden.
The text was updated successfully, but these errors were encountered:
Just to clarify: This change is required because some of the canned queries in MC core can result in specifying the same rdf:type twice, but the Proxy creation interface requires them to be specified only once, hence the code change to use Set instead of LIst.
HqdmObjectFactory
throws NPE when a dynamic entity is requested with the same interface specified more than once.This is because the
DynamicObjects
class swallows an exception and returnsnull
when it should probably propagate the exception to the callers so that the root cause isn't hidden.The text was updated successfully, but these errors were encountered: