Skip to content

Commit 0b45d40

Browse files
committed
Make doHealthCheck() final to satisfy PMD's understandable complaint
1 parent 79bfbbb commit 0b45d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weblab-common/src/main/java/ucles/weblab/common/config/ConfigurationHealthCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public ConfigurationHealthCheck(Environment environment, List<String> requiredPr
4444

4545

4646
@Override
47-
protected void doHealthCheck(Builder bldr) {
47+
final protected void doHealthCheck(Builder bldr) {
4848

4949
List<String> missing = requiredProperties.stream()
5050
.filter(key -> !environment.containsProperty(key))

0 commit comments

Comments
 (0)