From 11458c9dcfff73d351000882e9903bb910160a9e Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 28 Sep 2017 17:22:33 +0200 Subject: [PATCH] DATACMNS-1181 - Polishing. Use Spring Framework's Nullable annotation instead the JSR-305 one. Original pull request: #251. --- .../projection/DefaultMethodInvokingMethodInterceptor.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/projection/DefaultMethodInvokingMethodInterceptor.java b/src/main/java/org/springframework/data/projection/DefaultMethodInvokingMethodInterceptor.java index 29353c27e..bebb10fbe 100644 --- a/src/main/java/org/springframework/data/projection/DefaultMethodInvokingMethodInterceptor.java +++ b/src/main/java/org/springframework/data/projection/DefaultMethodInvokingMethodInterceptor.java @@ -25,11 +25,10 @@ import java.util.Arrays; import java.util.Map; import java.util.Optional; -import javax.annotation.Nullable; - import org.aopalliance.intercept.MethodInterceptor; import org.aopalliance.intercept.MethodInvocation; import org.springframework.aop.ProxyMethodInvocation; +import org.springframework.lang.Nullable; import org.springframework.util.ConcurrentReferenceHashMap; import org.springframework.util.ConcurrentReferenceHashMap.ReferenceType; import org.springframework.util.ReflectionUtils;