summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/HTMLOutputter.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:36:04 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commitda677dfd59c2b551f3335ee0a5d5dfb33f9869c5 (patch)
tree9aa09066c95935117bf405b119ed9f89f448a54d /qadevOOo/runner/convwatch/HTMLOutputter.java
parent14d1a11ec4a7ed0deeac522403248536e8d23f57 (diff)
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'qadevOOo/runner/convwatch/HTMLOutputter.java')
-rw-r--r--qadevOOo/runner/convwatch/HTMLOutputter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/runner/convwatch/HTMLOutputter.java b/qadevOOo/runner/convwatch/HTMLOutputter.java
index 2dea50fec6e0..828d76bda74f 100644
--- a/qadevOOo/runner/convwatch/HTMLOutputter.java
+++ b/qadevOOo/runner/convwatch/HTMLOutputter.java
@@ -24,14 +24,14 @@ import helper.OSHelper;
public class HTMLOutputter
{
- FileWriter m_aOut;
- String m_sFilename;
- String m_sNamePrefix; // the HTML files used a suffix to build it's right name
+ private FileWriter m_aOut;
+ private String m_sFilename;
+ private String m_sNamePrefix; // the HTML files used a suffix to build it's right name
/**
* ls is the current line separator (carridge return)
*/
- String ls;
+ private String ls;
HTMLOutputter() {}
public static HTMLOutputter create( String _sOutputPath, String _sHTMLFilename, String _sNamePrefix )