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

POICellFormatterの結合したセルの値の取得のバグ #12

Closed
mygreen opened this issue Feb 22, 2016 · 1 comment
Closed

POICellFormatterの結合したセルの値の取得のバグ #12

mygreen opened this issue Feb 22, 2016 · 1 comment
Labels

Comments

@mygreen
Copy link
Owner

mygreen commented Feb 22, 2016

POICellFormatter#getMergedCellValue()において、結合したセルを走査する場合、行の終了条件が間違っている。

 // getFirstRow()でなく、geLastRow()。
for(int rowIdx=range.getFirstRow(); rowIdx <= range.getFirstRow(); rowIdx++) {

for(int rowIdx=range.getFirstRow(); rowIdx <= range.geLastRow(); rowIdx++) {
@mygreen
Copy link
Owner Author

mygreen commented Mar 21, 2016

fix 0.7

@mygreen mygreen closed this as completed Mar 21, 2016
@mygreen mygreen added the bug label Jul 2, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant