summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-08 13:53:08 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-08 13:53:54 +0200
commit2beba8f93e7991372dd45351c92c50f7850dc46a (patch)
tree15dfae00223ccc7fdbfe2e06a3d931b97fded890 /l10ntools
parent49ad17e2b1aef65fad357b9c540ab36189233dd3 (diff)
reduce ascii noise and useless comments
Change-Id: I317058e3b25cebb7c1d89361636261c5f16a84d4
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/filter/merge/FCFGMerge.java7
-rw-r--r--l10ntools/source/filter/merge/Merger.java7
-rw-r--r--l10ntools/source/filter/utils/Cache.java3
-rw-r--r--l10ntools/source/filter/utils/Logger.java9
-rw-r--r--l10ntools/source/filter/utils/XMLHelper.java3
5 files changed, 2 insertions, 27 deletions
diff --git a/l10ntools/source/filter/merge/FCFGMerge.java b/l10ntools/source/filter/merge/FCFGMerge.java
index fc2637e34b7c..ce3d510be48d 100644
--- a/l10ntools/source/filter/merge/FCFGMerge.java
+++ b/l10ntools/source/filter/merge/FCFGMerge.java
@@ -18,15 +18,11 @@
package com.sun.star.filter.config.tools.merge;
-//_______________________________________________
-
import java.lang.*;
import java.util.*;
import java.io.*;
import com.sun.star.filter.config.tools.utils.*;
-//_______________________________________________
-
/**
* Its a simple command line tool, which can merge different XML fragments
* together. Such fragments must exist as files on disk, will be moved into
@@ -36,9 +32,6 @@ import com.sun.star.filter.config.tools.utils.*;
*/
public class FCFGMerge
{
- //___________________________________________
- // const
-
private static final java.lang.String CFGFILE = "com/sun/star/filter/config/tools/merge/FCFGMerge.cfg";
private static final java.lang.String PROP_LOGLEVEL = "loglevel";
diff --git a/l10ntools/source/filter/merge/Merger.java b/l10ntools/source/filter/merge/Merger.java
index 3502d670282e..26204f11db56 100644
--- a/l10ntools/source/filter/merge/Merger.java
+++ b/l10ntools/source/filter/merge/Merger.java
@@ -17,24 +17,17 @@
*/
package com.sun.star.filter.config.tools.merge;
-//_______________________________________________
-
import java.lang.*;
import java.util.*;
import java.io.*;
import com.sun.star.filter.config.tools.utils.*;
-//_______________________________________________
-
/** can merge different xml fragments together.
*
*
*/
public class Merger
{
- //___________________________________________
- // const
-
private static final java.lang.String PROP_XMLVERSION = "xmlversion" ; // <= global cfg file
private static final java.lang.String PROP_XMLENCODING = "xmlencoding" ; // <= global cfg file
private static final java.lang.String PROP_XMLPATH = "xmlpath" ; // <= global cfg file
diff --git a/l10ntools/source/filter/utils/Cache.java b/l10ntools/source/filter/utils/Cache.java
index d3ad7dbc6211..744481d1ef52 100644
--- a/l10ntools/source/filter/utils/Cache.java
+++ b/l10ntools/source/filter/utils/Cache.java
@@ -36,8 +36,7 @@ import java.io.*;
*/
public class Cache
{
- //___________________________________________
- // public const
+
/** identifies a file type item of this cache. */
public static final int E_TYPE = 0;
diff --git a/l10ntools/source/filter/utils/Logger.java b/l10ntools/source/filter/utils/Logger.java
index 425f2a24c420..2b206b351e8a 100644
--- a/l10ntools/source/filter/utils/Logger.java
+++ b/l10ntools/source/filter/utils/Logger.java
@@ -18,15 +18,9 @@
package com.sun.star.filter.config.tools.utils;
-//_______________________________________________
-// imports
-
import java.lang.*;
import java.util.*;
-//_______________________________________________
-// definition
-
/** can be used to print out some debug messages
* and group it into warnings/errors or info statements.
*
@@ -34,9 +28,6 @@ import java.util.*;
*/
public class Logger
{
- //___________________________________________
- // const
-
/** only error message will be shown. */
public static final int LEVEL_ERRORS = 1;
diff --git a/l10ntools/source/filter/utils/XMLHelper.java b/l10ntools/source/filter/utils/XMLHelper.java
index 2dc4d5c65596..390a6e59af95 100644
--- a/l10ntools/source/filter/utils/XMLHelper.java
+++ b/l10ntools/source/filter/utils/XMLHelper.java
@@ -35,8 +35,7 @@ import java.io.*;
*/
public class XMLHelper
{
- //___________________________________________
- // public const
+
/** its a possible value of the xml attribute "oor:type" and identify an integer type. */
public static final java.lang.String XMLTYPE_INTEGER = "xs:int";