Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
e45cd453
Commit
e45cd453
authored
4 years ago
by
chaitali borole
Committed by
nixonrodrigues
4 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-4001 : Update poi jar version to 4.1.1
parent
8f9ef446
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
pom.xml
pom.xml
+2
-2
FileUtils.java
...sitory/src/main/java/org/apache/atlas/util/FileUtils.java
+2
-1
No files found.
pom.xml
View file @
e45cd453
...
@@ -719,8 +719,8 @@
...
@@ -719,8 +719,8 @@
<!--Apache poi and Open csv-->
<!--Apache poi and Open csv-->
<opencsv.version>
5.0
</opencsv.version>
<opencsv.version>
5.0
</opencsv.version>
<poi.version>
3.17
</poi.version>
<poi.version>
4.1.1
</poi.version>
<poi-ooxml.version>
3.17
</poi-ooxml.version>
<poi-ooxml.version>
4.1.1
</poi-ooxml.version>
<javax-inject.version>
1
</javax-inject.version>
<javax-inject.version>
1
</javax-inject.version>
<jettison.version>
1.3.7
</jettison.version>
<jettison.version>
1.3.7
</jettison.version>
...
...
This diff is collapsed.
Click to expand it.
repository/src/main/java/org/apache/atlas/util/FileUtils.java
View file @
e45cd453
...
@@ -26,6 +26,7 @@ import org.apache.commons.io.FilenameUtils;
...
@@ -26,6 +26,7 @@ import org.apache.commons.io.FilenameUtils;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
import
org.apache.poi.ss.usermodel.Cell
;
import
org.apache.poi.ss.usermodel.Cell
;
import
org.apache.poi.ss.usermodel.CellType
;
import
org.apache.poi.ss.usermodel.Row
;
import
org.apache.poi.ss.usermodel.Row
;
import
org.apache.poi.ss.usermodel.Sheet
;
import
org.apache.poi.ss.usermodel.Sheet
;
import
org.apache.poi.ss.usermodel.Workbook
;
import
org.apache.poi.ss.usermodel.Workbook
;
...
@@ -127,7 +128,7 @@ public class FileUtils {
...
@@ -127,7 +128,7 @@ public class FileUtils {
for
(
int
c
=
row
.
getFirstCellNum
();
c
<
row
.
getLastCellNum
();
c
++)
{
for
(
int
c
=
row
.
getFirstCellNum
();
c
<
row
.
getLastCellNum
();
c
++)
{
Cell
cell
=
row
.
getCell
(
c
);
Cell
cell
=
row
.
getCell
(
c
);
if
(
cell
!=
null
&&
cell
.
getCellType
()
!=
Cell
.
CELL_TYPE_
BLANK
)
{
if
(
cell
!=
null
&&
cell
.
getCellType
()
!=
Cell
Type
.
BLANK
)
{
return
false
;
return
false
;
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment