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
When the item is wrongly matched, the next iteration with the correct match throws an error the code does .remove(-1).
The real issue is that items can't be compared just by "target", uses io.helidon.inject.api.ModuleComponent != provides io.helidon.inject.api.ModuleComponent with xxx.
The code needs to match items of the same kind.
The text was updated successfully, but these errors were encountered:
Compilation failed on
ModuleInfoDescriptorBlueprint.mergeCreate
without any code changes (main branch at e65fef5).The impacted module is
helidon-integrations-oci-sdk-runtime
and the module-info looks like this:ModuleInfoDescriptorBlueprint.mergeCreate
compares two module-info by finding matching "items":See above
first(itemThere.target())
:This means that
uses io.helidon.inject.api.ModuleComponent
is matchable with:When the item is wrongly matched, the next iteration with the correct match throws an error the code does
.remove(-1)
.The real issue is that items can't be compared just by "target",
uses io.helidon.inject.api.ModuleComponent
!=provides io.helidon.inject.api.ModuleComponent with xxx
.The code needs to match items of the same kind.
The text was updated successfully, but these errors were encountered: