We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a122a0e commit cdf01edCopy full SHA for cdf01ed
spring-core/graalvm/src/main/java/org/springframework/aot/graalvm/ConstantFieldSubstitutionProcessor.java
@@ -45,7 +45,8 @@ class ConstantFieldSubstitutionProcessor extends SubstitutionProcessor {
45
private static Pattern[] patterns = {
46
Pattern.compile(Pattern.quote("org.springframework.core.NativeDetector#imageCode")),
47
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*Present"),
48
- Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*_PRESENT")
+ Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*_PRESENT"),
49
+ Pattern.compile(Pattern.quote("reactor.") + ".*#.*Available")
50
};
51
52
private final ThrowawayClassLoader throwawayClassLoader;
0 commit comments