Make fields final

Closes gh-33537
This commit is contained in:
Moritz Halbritter
2022-12-16 14:28:44 +01:00
parent 216d15997a
commit 725337f976
285 changed files with 445 additions and 437 deletions

View File

@@ -25,7 +25,7 @@ public class MyProperties {
private String name;
@NestedConfigurationProperty
private Nested nested = new Nested();
private final Nested nested = new Nested();
// @fold:on // getters / setters...
public String getName() {