Merge branch '3.5.x'

Closes gh-48106
This commit is contained in:
Stéphane Nicoll
2025-11-13 10:31:25 +01:00
71 changed files with 120 additions and 119 deletions
@@ -193,7 +193,7 @@ public class DevToolsProperties {
/**
* Whether to enable a livereload.com-compatible server.
*/
private boolean enabled = false;
private boolean enabled;
/**
* Server port.
@@ -205,7 +205,7 @@ class RestarterTests {
@EnableScheduling
static class SampleApplication {
private int count = 0;
private int count;
private static final AtomicBoolean restart = new AtomicBoolean();
@@ -233,7 +233,7 @@ class RestarterTests {
static class CloseCountingApplicationListener implements ApplicationListener<ContextClosedEvent> {
static int closed = 0;
static int closed;
@Override
public void onApplicationEvent(ContextClosedEvent event) {