Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
ofbiz-directcontrolservlet
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
8e6015ca
authored
2014-10-24 12:36:05 -0500
by
Ean Schuessler
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add generics markup. #4378
1 parent
017e74f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/com/brainfood/ofbiz/DirectControlServlet.java
src/com/brainfood/ofbiz/DirectControlServlet.java
View file @
8e6015c
...
...
@@ -153,9 +153,9 @@ public class DirectControlServlet extends HttpServlet {
}
Iterable
<
CSVRecord
>
records
=
CSVFormat
.
EXCEL
.
parse
(
request
.
getReader
());
List
data
=
new
ArrayList
();
List
<
List
<
String
>>
data
=
new
ArrayList
<
List
<
String
>>
();
for
(
CSVRecord
record
:
records
)
{
List
row
=
new
ArrayList
();
List
<
String
>
row
=
new
ArrayList
<
String
>
();
String
cell
=
null
;
Iterator
<
String
>
i
=
record
.
iterator
();
while
(
i
.
hasNext
())
{
...
...
Please
register
or
sign in
to post a comment