|
If a class which is used as type argument is missing from the deployment, an exception is thrown and the deployment fails.
The behaviour should be consistent with other similar cases (
WELD-1215
,
WELD-1515
), and the broken class should just be ignored and not cause a deployment failure.
Example, Bar.class is missing:
public class FooBarProducer {
public Foo<Bar> produceFooBar() {
return new Foo<Bar>();
}
}
Result:
|