Remove obsolete HintType.CLASS_PROXIES enum constant
See gh-28972
This commit is contained in:
@@ -17,7 +17,6 @@
|
|||||||
package org.springframework.aot.agent;
|
package org.springframework.aot.agent;
|
||||||
|
|
||||||
|
|
||||||
import org.springframework.aot.hint.ClassProxyHint;
|
|
||||||
import org.springframework.aot.hint.JavaSerializationHint;
|
import org.springframework.aot.hint.JavaSerializationHint;
|
||||||
import org.springframework.aot.hint.JdkProxyHint;
|
import org.springframework.aot.hint.JdkProxyHint;
|
||||||
import org.springframework.aot.hint.ReflectionHints;
|
import org.springframework.aot.hint.ReflectionHints;
|
||||||
@@ -26,7 +25,8 @@ import org.springframework.aot.hint.ResourcePatternHint;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Main types of {@link org.springframework.aot.hint.RuntimeHints}.
|
* Main types of {@link org.springframework.aot.hint.RuntimeHints}.
|
||||||
* <p>This allows to sort {@link RecordedInvocation recorded invocations}
|
*
|
||||||
|
* <p>This allows to sort {@linkplain RecordedInvocation recorded invocations}
|
||||||
* into hint categories.
|
* into hint categories.
|
||||||
*
|
*
|
||||||
* @author Brian Clozel
|
* @author Brian Clozel
|
||||||
@@ -57,12 +57,8 @@ public enum HintType {
|
|||||||
/**
|
/**
|
||||||
* JDK proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#jdkProxies()}.
|
* JDK proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#jdkProxies()}.
|
||||||
*/
|
*/
|
||||||
JDK_PROXIES(JdkProxyHint.class),
|
JDK_PROXIES(JdkProxyHint.class);
|
||||||
|
|
||||||
/**
|
|
||||||
* Class proxies hint, as described by {@link org.springframework.aot.hint.ProxyHints#classProxies()}.
|
|
||||||
*/
|
|
||||||
CLASS_PROXIES(ClassProxyHint.class);
|
|
||||||
|
|
||||||
private final Class<?> hintClass;
|
private final Class<?> hintClass;
|
||||||
|
|
||||||
@@ -73,4 +69,5 @@ public enum HintType {
|
|||||||
public String hintClassName() {
|
public String hintClassName() {
|
||||||
return this.hintClass.getSimpleName();
|
return this.hintClass.getSimpleName();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user