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 f910d0b commit 747df87Copy full SHA for 747df87
src/main/java/io/tpd/quboo/sonarplugin/pojos/Issue.java
@@ -60,7 +60,7 @@ public class Issue {
60
@JsonProperty("author")
61
private String author;
62
@JsonProperty("tags")
63
- private List<String> tags = new ArrayList<String>();
+ private List<String> tags = new ArrayList<>();
64
@JsonProperty("creationDate")
65
private String creationDate;
66
@JsonProperty("updateDate")
@@ -70,7 +70,7 @@ public class Issue {
70
@JsonProperty("line")
71
private Integer line;
72
@JsonIgnore
73
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
+ private Map<String, Object> additionalProperties = new HashMap<>();
74
75
/**
76
* @return The key
0 commit comments