mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-25 16:29:28 +00:00
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:
+3
-3
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user