dan-s1 commented on code in PR #9874:
URL: https://github.com/apache/nifi/pull/9874#discussion_r2052617455
##########
nifi-extension-bundles/nifi-poi-bundle/nifi-poi-services/src/main/java/org/apache/nifi/excel/RowIterator.java:
##########
@@ -129,4 +151,37 @@ private boolean hasExhaustedRows() {
}
return exhausted;
}
+
+ private boolean isXSSFExcelFile(InputStream in, final String password) {
Review Comment:
or perhaps
```suggestion
private boolean isXSSF(InputStream in, final String password) {
```
as in POI the different implementations they have are referred to as HSSF
and XSSF.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]