-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StreamingWorkbook#getSheetIndex(String) and StreamingWorkbook#getSheet(String) behavior is inconsistent with poi-ooxml #248
Comments
Oh wow that was fast, thanks @pjfanning! |
@pjfanning just realized its for your fork 😅 , could you create a PR here as well? |
this is not my repo and my PRs here have been not been merged in recent past - I didn't fork this project for a laugh |
Is this repo no longer maintained? @pjfanning is that why you forked the project? |
create a PR yourself and see if it is accepted - I no longer create PRs on this repo - my fork is frequently maintained and its API remains very similar to this one |
@pjfanning I see that the last PR and reply from the owner is from 2021, it seems like its no longer maintained. I'll use your fork then, thanks! |
StreamingWorkbook#getSheetIndex(String)
andStreamingWorkbook#getSheet(String)
are case sensitive:excel-streaming-reader/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java
Lines 103 to 110 in 9e2f020
excel-streaming-reader/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java
Lines 67 to 70 in 9e2f020
excel-streaming-reader/src/main/java/com/monitorjbl/xlsx/impl/StreamingWorkbook.java
Lines 29 to 36 in 9e2f020
This behavior is inconsistent with
poi-ooxml
, where allWorkbook#getSheetIndex(String)
andWorkbook#getSheet(String)
implementations are case insensitive, eg. XSSFWorkbook#getSheetIndex(String) and XSSFWorkbook#getSheet(String):The text was updated successfully, but these errors were encountered: