Upgrade to Spring Boot 3.0.0

Closes gh-1342
This commit is contained in:
Stephane Nicoll
2022-11-08 16:51:10 +09:00
parent 9546fb4b8f
commit 89e59ddca7
11 changed files with 42 additions and 23 deletions

View File

@@ -155,7 +155,7 @@ public class InitializrProperties extends InitializrConfiguration {
/**
* A simple element from the properties.
*/
public static class SimpleElement {
public static final class SimpleElement {
/**
* Element title.
@@ -172,7 +172,7 @@ public class InitializrProperties extends InitializrConfiguration {
*/
private String value;
public SimpleElement(String value) {
private SimpleElement(String value) {
this.value = value;
}