https://bz.apache.org/bugzilla/show_bug.cgi?id=63509

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

--- Comment #1 from [email protected] ---
In 4.0.1 the CellReference constructor is this:

public CellReference(Cell cell) {
   this(cell.getRowIndex(), cell.getColumnIndex(), false, false);
}

This means that _sheetName is null. And so the Sheet name is not prefixed to
the cell.

In 4.1.0 the CellReference constructor is this:

public CellReference(Cell cell) {
   this(cell.getSheet().getSheetName(), cell.getRowIndex(),
cell.getColumnIndex(), false, false);
}


This means that _sheetName is not null. And so the Sheet name is prefixed to
the cell leading to the problem.

-- 
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