File tree 1 file changed +3
-3
lines changed
spring-batch-excel/src/main/java/org/springframework/batch/extensions/excel/poi
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2006-2021 the original author or authors.
2
+ * Copyright 2006-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
16
16
17
17
package org .springframework .batch .extensions .excel .poi ;
18
18
19
+ import java .util .ArrayList ;
19
20
import java .util .Iterator ;
20
- import java .util .LinkedList ;
21
21
import java .util .List ;
22
22
23
23
import org .apache .poi .ss .usermodel .Cell ;
@@ -88,7 +88,7 @@ private String[] map(Row row) {
88
88
if (row == null ) {
89
89
return null ;
90
90
}
91
- final List <String > cells = new LinkedList <>();
91
+ final List <String > cells = new ArrayList <>();
92
92
final int numberOfColumns = row .getLastCellNum ();
93
93
94
94
for (int i = 0 ; i < numberOfColumns ; i ++) {
You can’t perform that action at this time.
0 commit comments