We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138ac5d commit 8550fdbCopy full SHA for 8550fdb
1 file changed
pf4j-plus/src/main/java/org/pf4j/plus/config/DefaultConfigService.java
@@ -38,6 +38,9 @@ public class DefaultConfigService implements ConfigService {
38
39
private final ConfigPersister persister;
40
private final ConcurrentMap<String, DefaultPluginConfig> configs;
41
+
42
+ // Volatile is sufficient here: only simple read/write operations on a reference, no compound actions
43
+ @SuppressWarnings("java:S3077")
44
private volatile ConfigChangeListener changeListener;
45
46
public DefaultConfigService(ConfigPersister persister) {
0 commit comments