Skip to content

Commit 5caeeec

Browse files
authoredApr 14, 2022
Merge pull request #50 from entando/PDA-309_fix-process-definition
PDA-309: Fix process definition
2 parents f61445d + d28edbe commit 5caeeec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/main/java/org/entando/plugins/pda/core/response/BaseMapModel.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
import com.fasterxml.jackson.annotation.JsonAnySetter;
55
import java.util.HashMap;
66
import java.util.Map;
7-
import java.util.concurrent.ConcurrentHashMap;
87
import lombok.NoArgsConstructor;
98

109
@NoArgsConstructor
1110
public class BaseMapModel {
1211

1312
@JsonAnySetter
14-
protected Map<String, Object> data = new ConcurrentHashMap<>();
13+
@SuppressWarnings("PMD.UseConcurrentHashMap")
14+
protected Map<String, Object> data = new HashMap<>();
1515

1616
@JsonAnyGetter
1717
public Map<String, Object> getData() {

0 commit comments

Comments
 (0)
Please sign in to comment.