Skip to content

Commit

Permalink
Merge pull request #2788 from hazendaz/master
Browse files Browse the repository at this point in the history
[ci] Type the array lists
  • Loading branch information
hazendaz authored Feb 3, 2023
2 parents 0d0223b + 0617da9 commit 309bed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/apache/ibatis/domain/misc/RichType.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public class RichType {

private String richProperty;

private Map richMap = new HashMap();
private Map richMap = new HashMap<>();

private List richList = new ArrayList() {
private List richList = new ArrayList<>() {
{
add("bar");
}
Expand Down

0 comments on commit 309bed7

Please sign in to comment.