modify converting to String from Integer

This commit is contained in:
null44 2016-05-09 17:14:31 +09:00
parent c3e977031f
commit 646738c5bf

View file

@ -190,12 +190,12 @@ public class AdminGeneralAction extends FessAdminAction {
private List<String> getDayItems() {
final List<String> items = new ArrayList<String>();
for (int i = 0; i < 32; i++) {
items.add(Integer.valueOf(i).toString());
items.add(Integer.toString(i));
}
for (int i = 40; i < 370; i += 10) {
items.add(Integer.valueOf(i).toString());
items.add(Integer.toString(i));
}
items.add(Integer.valueOf(365).toString());
items.add(Integer.toString(365));
return items;
}