public void setRowHeight(int rh, int row)
{
setRowHeight(rh);
// FIXME: not implemented
}
So that was actual code that Sun shipped. A method setRowHeight(rh,row) that allowed you to change the height of row number 'row' to 'rh', instead changed the height of ALL rows to 'rh' because the alternative was too hard and therefore not implemented! So much for multi-height rows.
public void setRowHeight(int rh, int row) { setRowHeight(rh); // FIXME: not implemented }
So that was actual code that Sun shipped. A method setRowHeight(rh,row) that allowed you to change the height of row number 'row' to 'rh', instead changed the height of ALL rows to 'rh' because the alternative was too hard and therefore not implemented! So much for multi-height rows.