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
Currently it cannot get plugins via a superclass, which causes issues when plugins only expose an interface but not their exact impl. This interface might also not extend Plugin, so the generic type should reflect this too.
Possible solutions:
Do an is check for each plugin instead of checking if classes are exactly equal, or use reflection in worst case
The text was updated successfully, but these errors were encountered:
Currently it cannot get plugins via a superclass, which causes issues when plugins only expose an interface but not their exact impl. This interface might also not extend Plugin, so the generic type should reflect this too.
Possible solutions:
is
check for each plugin instead of checking if classes are exactly equal, or use reflection in worst caseThe text was updated successfully, but these errors were encountered: