fix: [#465] Avoid NPE with missing 'r' attribute #514
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #465
For the case the (optional)
r
attribute is not present, the code tracks the running line and column number, falling back to those if ther
attribute does not provide the proper addresses.Adds a test case (
issue514.xlsx
), that fails being processed (with the reported NPE) and passes with the fix.Please note: The file that was provided by the ticket reporter @fabiospiga has different issues in addition to the reported NPE. The fix of this PR does help to not throw the reported NPE also for that file, but it does not address the other issues (I tried with a time-box but failed to get it fully processed). The PR let's us process the file that brought us to this ticket in the first place.
Inspired by the apache poi approach, see code here.
This PR is now complete IMHO and ready to be reviewed.