Skip to content

Commit 7caefb3

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 28bd3bd commit 7caefb3

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,7 @@ public Object invoke(@SuppressWarnings("null") MethodInvocation invocation) thro
701701
try {
702702
return composition.invoke(invocationMulticaster, method, arguments);
703703
} catch (Exception ex) {
704+
704705
if (ex instanceof InvocationTargetException) {
705706
throw ((InvocationTargetException) ex).getTargetException();
706707
}

0 commit comments

Comments
 (0)