summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java14
1 files changed, 2 insertions, 12 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java
index bf6d2dc7f9f4..aa4e5c146256 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcDocumentSerializer.java
@@ -386,16 +386,10 @@ public abstract class SxcDocumentSerializer implements OfficeConstants,
// There is a number of rows repeated attribute:
if (rowsRepeatedNode != null) {
-
// Get the number of times the row is repeated
String rowsRepeatedString = rowsRepeatedNode.getNodeValue();
-
- Integer rowsRepeatedInt = Integer.valueOf(rowsRepeatedString);
-
- rowsRepeated = rowsRepeatedInt.intValue();
-
+ rowsRepeated = Integer.parseInt(rowsRepeatedString);
} else {
-
// The row is not repeated
rowsRepeated = 1;
}
@@ -575,14 +569,10 @@ public abstract class SxcDocumentSerializer implements OfficeConstants,
// There is a number of cols repeated attribute
if (colsRepeatedNode != null) {
-
// Get the number of times the cell is repeated
String colsRepeatedString = colsRepeatedNode.getNodeValue();
-
- Integer colsRepeatedInt = Integer.valueOf(colsRepeatedString);
- colsRepeated = colsRepeatedInt.intValue();
+ colsRepeated = Integer.parseInt(colsRepeatedString);
} else {
-
// The cell is not repeated
colsRepeated = 1;
}