Bug 62807 - XSLFTableCell#removeBorder(BorderEdge.right) removes the bottom edge not the right edge.
Summary: XSLFTableCell#removeBorder(BorderEdge.right) removes the bottom edge not the ...
Status: RESOLVED FIXED
Alias: None
Product: POI
Classification: Unclassified
Component: XSLF (show other bugs)
Version: unspecified
Hardware: PC All
: P2 normal (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-10-08 10:58 UTC by Aleksei
Modified: 2018-10-08 18:39 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Aleksei 2018-10-08 10:58:49 UTC
Looks like there is a typo in the code.

    @Override
    public void removeBorder(BorderEdge edge) {
...
        case right:
            if (pr.isSetLnR()) {
                pr.unsetLnB();
            }
...    


This is relevant for 3.17 and 4.0.0 versions.