Skip to content

Commit 40da78e

Browse files
committed
Polishing
1 parent 6f6be27 commit 40da78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/util/ClassUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ public static Set<Class<?>> getAllInterfacesForClassAsSet(Class<?> clazz, @Nulla
772772
* conflicting method signatures (or a similar constraint is violated)
773773
* @see java.lang.reflect.Proxy#getProxyClass
774774
*/
775-
@SuppressWarnings("deprecation")
775+
@SuppressWarnings("deprecation") // on JDK 9
776776
public static Class<?> createCompositeInterface(Class<?>[] interfaces, @Nullable ClassLoader classLoader) {
777777
Assert.notEmpty(interfaces, "Interfaces must not be empty");
778778
return Proxy.getProxyClass(classLoader, interfaces);

0 commit comments

Comments
 (0)