mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
b552c6e1d8
Fix SharedEntityManagerCreator.createSharedEntityManager to correctly forward an empty array in case that EntityManagerFactoryInfo returns null from getEntityManagerInterface(). Previously the var-args invocation had turned null into an array with a null value which caused a NullPointerException in the call to Proxy.newProxyInstance() further down the call stack. Issue: SPR-10678