https://issues.apache.org/bugzilla/show_bug.cgi?id=55380

--- Comment #4 from Dominik Stadler <[email protected]> ---
A simplified reproducer is as follows:

    public void testMergeCellRanges55380() {
        CellRangeAddress cr1 = CellRangeAddress.valueOf("C9:D30");
        CellRangeAddress cr2 = CellRangeAddress.valueOf("C7:C31");
        CellRangeAddress[] cr3 = CellRangeUtil.mergeCellRanges(new
CellRangeAddress[]{cr1, cr2});   // endless loop...
        assertEquals(2, cr3.length);
        assertEquals("C9:D30", cr3[0].formatAsString());
        assertEquals("C7:C31", cr3[1].formatAsString());
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to