summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java
index 2303bb3bb2c1..b04579bde788 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java
@@ -35,7 +35,7 @@ import org.openoffice.xmerge.util.Debug;
*/
public class TextStyle extends Style implements Cloneable {
- final protected static int FIRST_ATTR = 0x01;
+
/** Indicates <i>bold</i> text. */
final private static int BOLD = 0x01;
/** Indicates <i>italic</i> text. */
@@ -48,8 +48,7 @@ public class TextStyle extends Style implements Cloneable {
final private static int SUPERSCRIPT = 0x10;
/** Indicates <i>subscripted</i> text. */
final private static int SUBSCRIPT = 0x20;
- /** Indicates the last attribute. */
- final protected static int LAST_ATTR = 0x20;
+
/** Values of text attributes. */
private int values = 0;