summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/FilenameHelper.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/FilenameHelper.java
parent14d1a11ec4a7ed0deeac522403248536e8d23f57 (diff)
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'qadevOOo/runner/convwatch/FilenameHelper.java')
-rw-r--r--qadevOOo/runner/convwatch/FilenameHelper.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/convwatch/FilenameHelper.java b/qadevOOo/runner/convwatch/FilenameHelper.java
index 1822232fc205..c26e8ee99921 100644
--- a/qadevOOo/runner/convwatch/FilenameHelper.java
+++ b/qadevOOo/runner/convwatch/FilenameHelper.java
@@ -42,11 +42,11 @@ interface Filenamer
abstract class FilenameHelper_impl implements Filenamer
{
- String fs; // file separator like '/'
- String m_sPath;
- String m_sFilename;
- String m_sSuffix;
- int m_nNumber = 0;
+ private String fs; // file separator like '/'
+ private String m_sPath;
+ private String m_sFilename;
+ private String m_sSuffix;
+ private int m_nNumber = 0;
public String getNumber()
{