Skip to content

Commit 747df87

Browse files
committed
Removing redundant types
1 parent f910d0b commit 747df87

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/io/tpd/quboo/sonarplugin/pojos

1 file changed

+2
-2
lines changed

src/main/java/io/tpd/quboo/sonarplugin/pojos/Issue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class Issue {
6060
@JsonProperty("author")
6161
private String author;
6262
@JsonProperty("tags")
63-
private List<String> tags = new ArrayList<String>();
63+
private List<String> tags = new ArrayList<>();
6464
@JsonProperty("creationDate")
6565
private String creationDate;
6666
@JsonProperty("updateDate")
@@ -70,7 +70,7 @@ public class Issue {
7070
@JsonProperty("line")
7171
private Integer line;
7272
@JsonIgnore
73-
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
73+
private Map<String, Object> additionalProperties = new HashMap<>();
7474

7575
/**
7676
* @return The key

0 commit comments

Comments
 (0)