Bug 62807

Summary: XSLFTableCell#removeBorder(BorderEdge.right) removes the bottom edge not the right edge.
Product: POI Reporter: Aleksei <alekseyk99>
Component: XSLFAssignee: POI Developers List <dev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: All   

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.