Skip to content

Commit

Permalink
SAK-29422 Add missing type to ArrayList
Browse files Browse the repository at this point in the history
  • Loading branch information
marktriggs committed Jun 23, 2015
1 parent 7a62b03 commit f4b8675
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Errors merge(Errors other) {
}

public List<Error> toList() {
return new ArrayList(errors);
return new ArrayList<Error>(errors);
}

public Map<String, String> toMap() {
Expand Down

0 comments on commit f4b8675

Please sign in to comment.