summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-12 16:27:18 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:24 +0200
commit8583da1e934a49791ef8d86668f3d5c3c5dae1d7 (patch)
treef092f708b7bb9a0a23ae82c1dc499a6e3fde4518 /qadevOOo/runner/convwatch
parent68cd011c907d00493bf2bfde531c1e244819596b (diff)
java: remove unused fields
found by UCDetector Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
Diffstat (limited to 'qadevOOo/runner/convwatch')
-rw-r--r--qadevOOo/runner/convwatch/ConvWatch.java1
-rw-r--r--qadevOOo/runner/convwatch/GraphicalTestArguments.java8
-rw-r--r--qadevOOo/runner/convwatch/INIOutputter.java3
-rw-r--r--qadevOOo/runner/convwatch/ImageHelper.java3
-rw-r--r--qadevOOo/runner/convwatch/PRNCompare.java8
-rw-r--r--qadevOOo/runner/convwatch/StatusHelper.java2
6 files changed, 7 insertions, 18 deletions
diff --git a/qadevOOo/runner/convwatch/ConvWatch.java b/qadevOOo/runner/convwatch/ConvWatch.java
index d64de0543c12..7187ec5f52a3 100644
--- a/qadevOOo/runner/convwatch/ConvWatch.java
+++ b/qadevOOo/runner/convwatch/ConvWatch.java
@@ -166,7 +166,6 @@ public class ConvWatch
String sInputPath = FileHelper.getPath(_sAbsoluteInputFile);
String sReferencePath = FileHelper.getPath(_sAbsoluteReferenceFile);
- a.setInputPath( sInputPath );
a.setReferencePath( sReferencePath );
a.setOutputPath( _sOutputPath );
a.setReferenceFile( sReferenceFile );
diff --git a/qadevOOo/runner/convwatch/GraphicalTestArguments.java b/qadevOOo/runner/convwatch/GraphicalTestArguments.java
index 82083679afa3..b9b195afd9d3 100644
--- a/qadevOOo/runner/convwatch/GraphicalTestArguments.java
+++ b/qadevOOo/runner/convwatch/GraphicalTestArguments.java
@@ -91,9 +91,9 @@ public class GraphicalTestArguments
private boolean m_bStoreFile = true;
private boolean m_bResuseOffice = false;
- boolean m_bDebugMode = false;
- private String m_sLeaveOutNames = null;
+
+
private String m_sDistinct = null;
@@ -241,10 +241,6 @@ public class GraphicalTestArguments
}
String sLeaveOutNames = (String)param.get(PropertyName.DOC_COMPARATOR_LEAVE_OUT_FILES);
- if (sLeaveOutNames != null)
- {
- m_sLeaveOutNames = sLeaveOutNames;
- }
String sDBInfoString = (String)param.get(PropertyName.DOC_COMPARATOR_DB_INFO_STRING);
if (sDBInfoString != null)
diff --git a/qadevOOo/runner/convwatch/INIOutputter.java b/qadevOOo/runner/convwatch/INIOutputter.java
index dccef7351954..673b8789be46 100644
--- a/qadevOOo/runner/convwatch/INIOutputter.java
+++ b/qadevOOo/runner/convwatch/INIOutputter.java
@@ -25,7 +25,7 @@ public class INIOutputter
{
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)
@@ -52,7 +52,6 @@ public class INIOutputter
return null;
}
a.m_sFilename = sFilename;
- a.m_sNamePrefix = _sNamePrefix;
return a;
}
diff --git a/qadevOOo/runner/convwatch/ImageHelper.java b/qadevOOo/runner/convwatch/ImageHelper.java
index c5b2f11c0093..1a297704249a 100644
--- a/qadevOOo/runner/convwatch/ImageHelper.java
+++ b/qadevOOo/runner/convwatch/ImageHelper.java
@@ -30,7 +30,7 @@ class ImageHelper
private int[] m_aPixels;
private int m_w = 0;
private int m_h = 0;
- private boolean m_bGrabbed = false;
+
private ImageHelper(Image _aImage)
{
@@ -53,7 +53,6 @@ class ImageHelper
System.err.println("image fetch aborted or errored");
return;
}
- m_bGrabbed = true;
}
public int getWidth() {return m_aImage.getWidth(null);}
public int getHeight() {return m_aImage.getHeight(null);}
diff --git a/qadevOOo/runner/convwatch/PRNCompare.java b/qadevOOo/runner/convwatch/PRNCompare.java
index 4b3974840bfc..e7aea95609dc 100644
--- a/qadevOOo/runner/convwatch/PRNCompare.java
+++ b/qadevOOo/runner/convwatch/PRNCompare.java
@@ -91,10 +91,10 @@ public class PRNCompare
return nMaxNumber;
}
- private String m_sInputPath;
+
private String m_sReferencePath;
private String m_sOutputPath;
- private String m_sDocFile;
+
private String m_sReferenceFile;
private String m_sPostScriptFile;
private int m_nMaxPages = 0;
@@ -102,14 +102,10 @@ public class PRNCompare
private TriState m_tUseBorderMove;
private String m_sDocumentType;
- public void setInputPath(String _sInputPath) { m_sInputPath = _sInputPath; }
-
public void setReferencePath(String _sReferencePath) { m_sReferencePath = _sReferencePath; }
public void setOutputPath(String _sOutPath) { m_sOutputPath = _sOutPath; }
- public void setDocFile(String _sDocFile) { m_sDocFile = _sDocFile;}
-
public void setReferenceFile(String _sPRNFile){ m_sReferenceFile = _sPRNFile;}
public void setPostScriptFile(String _sPSFile){ m_sPostScriptFile = _sPSFile;}
diff --git a/qadevOOo/runner/convwatch/StatusHelper.java b/qadevOOo/runner/convwatch/StatusHelper.java
index bb494508128f..939a64ae8108 100644
--- a/qadevOOo/runner/convwatch/StatusHelper.java
+++ b/qadevOOo/runner/convwatch/StatusHelper.java
@@ -26,7 +26,7 @@ public class StatusHelper
final static public int DIFF_AFTER_MOVE_DONE_NO_PROBLEMS = 4;
final static public int DIFF_AFTER_MOVE_DONE_DIFFERENCES_FOUND = 5;
- public String m_sMainName;
+
public String m_sOldGfx;
public String m_sNewGfx;