Make fields final
Closes gh-33537
This commit is contained in:
@@ -35,9 +35,9 @@ import org.springframework.util.FileCopyUtils;
|
||||
*/
|
||||
class PomCondition extends Condition<File> {
|
||||
|
||||
private Set<String> expectedContents;
|
||||
private final Set<String> expectedContents;
|
||||
|
||||
private Set<String> notExpectedContents;
|
||||
private final Set<String> notExpectedContents;
|
||||
|
||||
PomCondition() {
|
||||
this(new HashSet<>(), new HashSet<>());
|
||||
|
||||
Reference in New Issue
Block a user