Skip to content

Commit 96e2fc6

Browse files
committed
Merge branch '5.3.x'
# Conflicts: # build.gradle # spring-core/src/main/java/org/springframework/core/type/StandardAnnotationMetadata.java # spring-core/src/main/java/org/springframework/core/type/classreading/SimpleAnnotationMetadata.java
2 parents 50c7c84 + 0b6a54d commit 96e2fc6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ configure(allprojects) { project ->
3030
mavenBom "com.fasterxml.jackson:jackson-bom:2.13.0"
3131
mavenBom "io.netty:netty-bom:4.1.72.Final"
3232
mavenBom "io.projectreactor:reactor-bom:2020.0.14"
33-
mavenBom "io.r2dbc:r2dbc-bom:Arabba-SR10"
33+
mavenBom "io.r2dbc:r2dbc-bom:Arabba-SR11"
3434
mavenBom "io.rsocket:rsocket-bom:1.1.1"
3535
mavenBom "org.eclipse.jetty:jetty-bom:11.0.7"
3636
mavenBom "org.jetbrains.kotlin:kotlin-bom:1.6.10"
@@ -311,12 +311,12 @@ configure([rootProject] + javaProjects) { project ->
311311
testImplementation("io.mockk:mockk")
312312
testImplementation("org.assertj:assertj-core")
313313
// Pull in the latest JUnit 5 Launcher API to ensure proper support in IDEs.
314-
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
315314
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
315+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
316316
testRuntimeOnly("org.junit.platform:junit-platform-suite-engine")
317317
testRuntimeOnly("org.apache.logging.log4j:log4j-core")
318-
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
319318
testRuntimeOnly("org.apache.logging.log4j:log4j-jul")
319+
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
320320
// JSR-305 only used for non-required meta-annotations
321321
compileOnly("com.google.code.findbugs:jsr305")
322322
testCompileOnly("com.google.code.findbugs:jsr305")

spring-context/src/main/java/org/springframework/cache/annotation/AbstractCachingConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public CachingConfigurerSupplier(Supplier<CachingConfigurer> supplier) {
124124
public <T> Supplier<T> adapt(Function<CachingConfigurer, T> provider) {
125125
return () -> {
126126
CachingConfigurer cachingConfigurer = this.supplier.get();
127-
return (cachingConfigurer != null) ? provider.apply(cachingConfigurer) : null;
127+
return (cachingConfigurer != null ? provider.apply(cachingConfigurer) : null);
128128
};
129129
}
130130

spring-core/src/main/java/org/springframework/core/type/classreading/SimpleAnnotationMetadata.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ public Set<MethodMetadata> getDeclaredMethods() {
161161
return Collections.unmodifiableSet(this.declaredMethods);
162162
}
163163

164+
164165
@Override
165166
public boolean equals(@Nullable Object obj) {
166167
return ((this == obj) || ((obj instanceof SimpleAnnotationMetadata) &&

0 commit comments

Comments
 (0)