fixed pattern list test
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4489 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
6a20350a09
commit
fcd4ca61c6
|
|
@ -193,7 +193,7 @@ public class NumberFormattingTests {
|
|||
private BigDecimal[] patternArray;
|
||||
|
||||
@NumberFormat(pattern="#,##.00")
|
||||
private List<BigDecimal>[] patternList;
|
||||
private List<BigDecimal> patternList;
|
||||
|
||||
@NumberFormat(pattern="#,##.00")
|
||||
private List<BigDecimal> patternList2;
|
||||
|
|
@ -246,11 +246,11 @@ public class NumberFormattingTests {
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue