summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/HTMLOutputter.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 12:44:57 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:23 +0200
commit68cd011c907d00493bf2bfde531c1e244819596b (patch)
tree0225318c908b00faaa701a19aaf7aa567c3582a0 /qadevOOo/runner/convwatch/HTMLOutputter.java
parent70f56bc22fe952c75ec714e05e1bb5296491a36a (diff)
java: reduce scope, make some methods private
found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e
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 828d76bda74f..6425ec96816b 100644
--- a/qadevOOo/runner/convwatch/HTMLOutputter.java
+++ b/qadevOOo/runner/convwatch/HTMLOutputter.java
@@ -103,7 +103,7 @@ public class HTMLOutputter
}
}
- String getHREF(String _sHREF, String _sPathInfo)
+ private String getHREF(String _sHREF, String _sPathInfo)
{
StringBuffer a = new StringBuffer();
if (! OSHelper.isWindows())
@@ -128,7 +128,7 @@ public class HTMLOutputter
return a.toString();
}
- String tableDataCell(String _sValue)
+ private String tableDataCell(String _sValue)
{
StringBuffer a = new StringBuffer();
a.append("<TD>");
@@ -137,7 +137,7 @@ public class HTMLOutputter
return a.toString();
}
- String tableHeaderCell(String _sValue)
+ private String tableHeaderCell(String _sValue)
{
StringBuffer a = new StringBuffer();
a.append("<TH>");
@@ -187,7 +187,7 @@ public class HTMLOutputter
}
- String stronghtml(String _sValue)
+ private String stronghtml(String _sValue)
{
StringBuffer a = new StringBuffer();
a.append("<STRONG>");