summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java
index 2ff98cbf69ab..dbf26291296d 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SxcConstants.java
@@ -26,14 +26,14 @@ package org.openoffice.xmerge.converter.xml.sxc;
public interface SxcConstants {
/** Family name for column styles. */
- public static final String COLUMN_STYLE_FAMILY = "table-column";
+ String COLUMN_STYLE_FAMILY = "table-column";
/** Family name for row styles. */
- public static final String ROW_STYLE_FAMILY = "table-row";
+ String ROW_STYLE_FAMILY = "table-row";
/** Family name for table-cell styles. */
- public static final String TABLE_CELL_STYLE_FAMILY = "table-cell";
+ String TABLE_CELL_STYLE_FAMILY = "table-cell";
/** Name of the default style. */
- public static final String DEFAULT_STYLE = "Default";
+ String DEFAULT_STYLE = "Default";
}