Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private byte[] getBinaryRepresentation() {
}
}

synchronized boolean isEnabled(String eventName) {
boolean isEnabled(String eventName) {
return settingsManager.isEnabled(eventName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void finish() {
}
}

private Map<String, InternalSetting> availableSettings = new LinkedHashMap<>();
private volatile Map<String, InternalSetting> availableSettings = new LinkedHashMap<>();

void setSettings(List<Map<String, String>> activeSettings, boolean writeSettingEvents) {
// store settings so they are available if a new event class is loaded
Expand Down