Skip to content
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

fix for the Issue #186 - #187

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

ismailozgen
Copy link

when SST cache size is set, IndexOutOfBounds exception is thrown while processing the empty cells for some files.
The file subject to the bug have been added to test resources

ismail.ozgen added 2 commits March 26, 2019 12:07
…utOfBounds exception is thrown while processing the empty cells for some files
Comment on lines -52 to +55
if (str!=null && str.length()>0) {
if (cacheSize > 0 || (str!=null && str.length()>0)) {
Copy link

@jamesblewitt jamesblewitt Nov 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure that empty (but not null) strings shouldn't be added to the shared string table?
Not adding it (when it is expected) could mess up all the subsequent indexes. Reading values in an Excel row could then receive the wrong values from the shared string table.

@StanBertrand
Copy link

I have the same issue ! this PR is still alive ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants