From 43c1aefd2dd5b25e1ff2cf4bf689427693a0bda1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 3 Jul 2012 09:03:19 +0200 Subject: fix dead assignment in setRowStyle Change-Id: I2efa34e6374bb77f1277cbea6a2293698dbbe338 --- .../xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmerge') diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java index cd0fa454b9f5..55b064f6b4b4 100644 --- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java +++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java @@ -115,9 +115,9 @@ public class RowStyle extends Style implements Cloneable { * @param RowHeight The height of this row. */ public void setRowHeight(int RowHeight) { - - this.rowHeight = rowHeight; + this.rowHeight = RowHeight; } + /** * Parse a rowheight in the form "1.234cm" to twips * -- cgit