File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
spring-core/src/main/java/org/springframework/core Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1616
1717package org .springframework .core ;
1818
19- import org .springframework .aot .AotDetector ;
20-
2119/**
2220 * Default implementation of the {@link ParameterNameDiscoverer} strategy interface,
2321 * using the Java 8 standard reflection mechanism (if available), and falling back
24- * to the ASM-based {@link LocalVariableTableParameterNameDiscoverer} (when not using
25- * AOT-processed optimizations ) for checking debug information in the class file.
22+ * to the ASM-based {@link LocalVariableTableParameterNameDiscoverer} (when not in
23+ * a native image ) for checking debug information in the class file.
2624 *
2725 * <p>If a Kotlin reflection implementation is present,
2826 * {@link KotlinReflectionParameterNameDiscoverer} is added first in the list and
@@ -45,7 +43,7 @@ public DefaultParameterNameDiscoverer() {
4543 addDiscoverer (new KotlinReflectionParameterNameDiscoverer ());
4644 }
4745 addDiscoverer (new StandardReflectionParameterNameDiscoverer ());
48- if (!AotDetector . useGeneratedArtifacts ()) {
46+ if (!NativeDetector . inNativeImage ()) {
4947 addDiscoverer (new LocalVariableTableParameterNameDiscoverer ());
5048 }
5149 }
You can’t perform that action at this time.
0 commit comments