Skip to content

Commit 7e8d6db

Browse files
committed
Remove obsolete HintType.CLASS_PROXIES enum constant
See gh-28972
1 parent 9846d28 commit 7e8d6db

File tree

1 file changed

+4
-7
lines changed
  • spring-core-test/src/main/java/org/springframework/aot/agent

1 file changed

+4
-7
lines changed

spring-core-test/src/main/java/org/springframework/aot/agent/HintType.java

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package org.springframework.aot.agent;
1818

1919

20-
import org.springframework.aot.hint.ClassProxyHint;
2120
import org.springframework.aot.hint.JavaSerializationHint;
2221
import org.springframework.aot.hint.JdkProxyHint;
2322
import org.springframework.aot.hint.ReflectionHints;
@@ -26,7 +25,8 @@
2625

2726
/**
2827
* Main types of {@link org.springframework.aot.hint.RuntimeHints}.
29-
* <p>This allows to sort {@link RecordedInvocation recorded invocations}
28+
*
29+
* <p>This allows to sort {@linkplain RecordedInvocation recorded invocations}
3030
* into hint categories.
3131
*
3232
* @author Brian Clozel
@@ -57,12 +57,8 @@ public enum HintType {
5757
/**
5858
* JDK proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#jdkProxies()}.
5959
*/
60-
JDK_PROXIES(JdkProxyHint.class),
60+
JDK_PROXIES(JdkProxyHint.class);
6161

62-
/**
63-
* Class proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#classProxies()}.
64-
*/
65-
CLASS_PROXIES(ClassProxyHint.class);
6662

6763
private final Class<?> hintClass;
6864

@@ -73,4 +69,5 @@ public enum HintType {
7369
public String hintClassName() {
7470
return this.hintClass.getSimpleName();
7571
}
72+
7673
}

0 commit comments

Comments
 (0)