diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-08 11:39:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-13 08:49:23 +0200 |
commit | 70f56bc22fe952c75ec714e05e1bb5296491a36a (patch) | |
tree | af4b3cf94e84cc2f5bf57c002f264eb44c3558af /qadevOOo/runner/util | |
parent | 2b3a801014b4891cd24ee4b61206652ff1cc6e73 (diff) |
java: reduce scope, make member classes private
found by UCDetector
Change-Id: Ief32d078090102b14b60b35fc36542f8d4fb252b
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r-- | qadevOOo/runner/util/XMLTools.java | 4 |
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>() ; |