Fixed type with exception re-throwing.
This commit is contained in:
parent
d1d0a4c65a
commit
b8e88a3dbe
@ -337,7 +337,7 @@ public abstract class AbstractInjectingObjectFactory implements ObjectFactory {
|
|||||||
deferredSetterActions.forEach(setterAction -> setterAction.accept(instance));
|
deferredSetterActions.forEach(setterAction -> setterAction.accept(instance));
|
||||||
return instance;
|
return instance;
|
||||||
} catch (InvocationTargetException | IllegalAccessException | InstantiationException e) {
|
} catch (InvocationTargetException | IllegalAccessException | InstantiationException e) {
|
||||||
throw new RuntimeException("e");
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user