mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Merge branch '3.5.x'
Closes gh-48106
This commit is contained in:
+1
-1
@@ -193,7 +193,7 @@ public class DevToolsProperties {
|
||||
/**
|
||||
* Whether to enable a livereload.com-compatible server.
|
||||
*/
|
||||
private boolean enabled = false;
|
||||
private boolean enabled;
|
||||
|
||||
/**
|
||||
* Server port.
|
||||
|
||||
+2
-2
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user