summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
index 8f6603a458ac..28a63cb7d713 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
@@ -89,7 +89,7 @@ public class SheetSettings implements OfficeConstants {
* @return The position as a {@code Point}.
*/
public Point getCursor() {
- return (new Point(cursorX, cursorY));
+ return new Point(cursorX, cursorY);
}
/**
@@ -124,7 +124,7 @@ public class SheetSettings implements OfficeConstants {
*/
public Point getSplit() {
- return (new Point(splitPointX, splitPointY));
+ return new Point(splitPointX, splitPointY);
}
/**
@@ -134,7 +134,7 @@ public class SheetSettings implements OfficeConstants {
*/
public Point getSplitType() {
- return (new Point(splitTypeX, splitTypeY));
+ return new Point(splitTypeX, splitTypeY);
}
/**