Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
ipojo-runtime-1.11.2
-
None
Description
Verification in the method checkProvidedService tries to get the field "specification" from the service interface, if the field doesn't exist it returns from the method and stop verifying the remaining interfaces in the list.
Solution : change
} catch (NoSuchFieldException e) {
return true; // No specification field
}
to
} catch (NoSuchFieldException e) {
continue; // No specification field
}