Skip to content

Commit f8533d0

Browse files
committed
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 437a805 commit f8533d0

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)