Skip to content

Commit

Permalink
fixed pattern list test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Jun 7, 2011
1 parent 02e79f5 commit cac42ef
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private static class TestBean {
private BigDecimal[] patternArray;

@NumberFormat(pattern="#,##.00")
private List<BigDecimal>[] patternList;
private List<BigDecimal> patternList;

@NumberFormat(pattern="#,##.00")
private List<BigDecimal> patternList2;
Expand Down Expand Up @@ -246,11 +246,11 @@ public void setPatternArray(BigDecimal[] patternArray) {
this.patternArray = patternArray;
}

public List<BigDecimal>[] getPatternList() {
public List<BigDecimal> getPatternList() {
return patternList;
}

public void setPatternList(List<BigDecimal>[] patternList) {
public void setPatternList(List<BigDecimal> patternList) {
this.patternList = patternList;
}

Expand Down

0 comments on commit cac42ef

Please sign in to comment.