summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java
index 50a34b2d4e95..4599a0e49c23 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java
@@ -39,14 +39,14 @@ import java.util.Properties;
public final class Debug {
/** Informational messages. */
- public final static int INFO = 0x0001;
+ public static final int INFO = 0x0001;
/** Error messages. */
- public final static int ERROR = 0x0002;
+ public static final int ERROR = 0x0002;
/** Trace messages. */
- public final static int TRACE = 0x0004;
+ public static final int TRACE = 0x0004;
/** To set a flag. */
- private final static boolean SET = true;
+ private static final boolean SET = true;
private static int flags = 0;
private static PrintWriter writer = null;