summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r--qadevOOo/runner/util/XMLTools.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/util/XMLTools.java b/qadevOOo/runner/util/XMLTools.java
index f4d7fbf0f515..1b8ccf183ea2 100644
--- a/qadevOOo/runner/util/XMLTools.java
+++ b/qadevOOo/runner/util/XMLTools.java
@@ -170,7 +170,7 @@ public class XMLTools {
* This class writes all XML data handled into a stream specified
* in the constructor.
*/
- public static class XMLWriter implements XDocumentHandler {
+ private static class XMLWriter implements XDocumentHandler {
private PrintWriter _log = null ;
private String align = "" ;
@@ -251,7 +251,7 @@ public class XMLTools {
* After document is completed there is a way to cehck
* if the XML data and structure was valid.
*/
- public static class XMLWellFormChecker extends XMLWriter {
+ private static class XMLWellFormChecker extends XMLWriter {
private boolean docStarted = false ;
private boolean docEnded = false ;
ArrayList<String> tagStack = new ArrayList<String>() ;