Skip to content

Commit

Permalink
[ci] Type the array lists
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Feb 3, 2023
1 parent 0d0223b commit 0617da9
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 0617da9

Please sign in to comment.