Skip to content

Commit 8ff2b22

Browse files
mp911deschauder
authored andcommitted
Revise ClassUtils and ReflectionUtils.
We deprecated `ClassUtils` in the repo.utils package and introduced a slimmer variant in o.s.d.util. Also, ReflectionUtils hosts now several methods that have been in ClassUtils along with an improved method naming (find vs. get in combination with return value semantics). CastUtils is deprecated as we do not widely use it.
1 parent d7375ce commit 8ff2b22

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

+1
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,7 @@ public Object invoke(@SuppressWarnings("null") MethodInvocation invocation) thro
681681
try {
682682
return composition.invoke(invocationMulticaster, method, arguments);
683683
} catch (Exception ex) {
684+
684685
if (ex instanceof InvocationTargetException) {
685686
throw ((InvocationTargetException) ex).getTargetException();
686687
}

0 commit comments

Comments
 (0)