File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
spring-core-test/src/main/java/org/springframework/aot/agent Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 17
17
package org .springframework .aot .agent ;
18
18
19
19
20
- import org .springframework .aot .hint .ClassProxyHint ;
21
20
import org .springframework .aot .hint .JavaSerializationHint ;
22
21
import org .springframework .aot .hint .JdkProxyHint ;
23
22
import org .springframework .aot .hint .ReflectionHints ;
26
25
27
26
/**
28
27
* 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}
30
30
* into hint categories.
31
31
*
32
32
* @author Brian Clozel
@@ -57,12 +57,8 @@ public enum HintType {
57
57
/**
58
58
* JDK proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#jdkProxies()}.
59
59
*/
60
- JDK_PROXIES (JdkProxyHint .class ),
60
+ JDK_PROXIES (JdkProxyHint .class );
61
61
62
- /**
63
- * Class proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#classProxies()}.
64
- */
65
- CLASS_PROXIES (ClassProxyHint .class );
66
62
67
63
private final Class <?> hintClass ;
68
64
@@ -73,4 +69,5 @@ public enum HintType {
73
69
public String hintClassName () {
74
70
return this .hintClass .getSimpleName ();
75
71
}
72
+
76
73
}
You can’t perform that action at this time.
0 commit comments