Skip to content

Commit 75824bb

Browse files
committed
Merge branch '3.4.x'
2 parents 0d4b1dc + 35dc8e6 commit 75824bb

File tree

25 files changed

+42
-38
lines changed

25 files changed

+42
-38
lines changed

buildSrc/src/main/java/org/springframework/boot/build/bom/BomExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static class LibraryHandler {
186186

187187
private final AlignWithHandler alignWith;
188188

189-
private boolean considerSnapshots = false;
189+
private boolean considerSnapshots;
190190

191191
private String version;
192192

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/liquibase/LiquibaseEndpointAutoConfigurationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -87,7 +87,7 @@ static class DataSourceClosingLiquibaseConfiguration {
8787
SpringLiquibase liquibase() {
8888
return new DataSourceClosingSpringLiquibase() {
8989

90-
private boolean propertiesSet = false;
90+
private boolean propertiesSet;
9191

9292
@Override
9393
public void setCloseDataSourceOnceMigrated(boolean closeDataSourceOnceMigrated) {

spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/jms/JmsHealthIndicatorTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -117,7 +117,7 @@ void whenConnectionStartIsUnresponsiveStatusIsDown() throws JMSException {
117117

118118
private static final class UnresponsiveStartAnswer implements Answer<Void> {
119119

120-
private boolean connectionClosed = false;
120+
private boolean connectionClosed;
121121

122122
private final Object monitor = new Object();
123123

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/flyway/FlywayAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ public NamedParameterJdbcOperations namedParameterJdbcOperations() {
12241224
@Component
12251225
static class MockFlywayMigrationStrategy implements FlywayMigrationStrategy {
12261226

1227-
private boolean called = false;
1227+
private boolean called;
12281228

12291229
@Override
12301230
public void migrate(Flyway flyway) {

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/Restarter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public class Restarter {
116116

117117
private final UncaughtExceptionHandler exceptionHandler;
118118

119-
private boolean finished = false;
119+
private boolean finished;
120120

121121
private final List<ConfigurableApplicationContext> rootContexts = new CopyOnWriteArrayList<>();
122122

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/runner/AbstractApplicationContextRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,9 @@ protected static final class RunnerConfiguration<C extends ConfigurableApplicati
509509

510510
private final Class<?>[] additionalContextInterfaces;
511511

512-
private boolean allowBeanDefinitionOverriding = false;
512+
private boolean allowBeanDefinitionOverriding;
513513

514-
private boolean allowCircularReferences = false;
514+
private boolean allowCircularReferences;
515515

516516
private List<ApplicationContextInitializer<? super C>> initializers = Collections.emptyList();
517517

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/MockServerRestClientCustomizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class MockServerRestClientCustomizer implements RestClientCustomizer {
6868

6969
private final Supplier<? extends RequestExpectationManager> expectationManagerSupplier;
7070

71-
private boolean bufferContent = false;
71+
private boolean bufferContent;
7272

7373
public MockServerRestClientCustomizer() {
7474
this(SimpleRequestExpectationManager::new);

spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/MockServerRestTemplateCustomizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public class MockServerRestTemplateCustomizer implements RestTemplateCustomizer
7070

7171
private boolean detectRootUri = true;
7272

73-
private boolean bufferContent = false;
73+
private boolean bufferContent;
7474

7575
public MockServerRestTemplateCustomizer() {
7676
this(SimpleRequestExpectationManager::new);

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/Phase.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
/*
2+
<<<<<<< HEAD
23
* Copyright 2012-2024 the original author or authors.
4+
=======
5+
* Copyright 2012-2025 the original author or authors.
6+
>>>>>>> 3.3.x
37
*
48
* Licensed under the Apache License, Version 2.0 (the "License");
59
* you may not use this file except in compliance with the License.
@@ -38,7 +42,7 @@ class Phase {
3842

3943
private final String name;
4044

41-
private boolean daemonAccess = false;
45+
private boolean daemonAccess;
4246

4347
private final List<String> args = new ArrayList<>();
4448

@@ -50,7 +54,7 @@ class Phase {
5054

5155
private String networkMode;
5256

53-
private boolean requiresApp = false;
57+
private boolean requiresApp;
5458

5559
/**
5660
* Create a new {@link Phase} instance.

spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit/GradleBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@ public class GradleBuild {
6767

6868
private final List<String> expectedDeprecationMessages = new ArrayList<>();
6969

70-
private boolean configurationCache = false;
70+
private boolean configurationCache;
7171

7272
private final Map<String, String> scriptProperties = new HashMap<>();
7373

0 commit comments

Comments
 (0)