summaryrefslogtreecommitdiff
path: root/unotools/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-19 16:03:41 +0200
committerNoel Grandin <noel@peralex.com>2015-01-05 08:23:29 +0200
commit43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 (patch)
treeb042266508f8b084bc7bbe9cc57250a971311099 /unotools/qa
parentcfcbe2e44e33f4a60e70006ff5e1cbb9aa2adceb (diff)
java: remove dead code
found by UCDetector Change-Id: I6b0f49529379072da566e927b86815f173e7a90b
Diffstat (limited to 'unotools/qa')
-rw-r--r--unotools/qa/complex/tempfile/Test01.java3
-rw-r--r--unotools/qa/complex/tempfile/TestHelper.java10
2 files changed, 0 insertions, 13 deletions
diff --git a/unotools/qa/complex/tempfile/Test01.java b/unotools/qa/complex/tempfile/Test01.java
index 2b64195d3752..ed8e729854c8 100644
--- a/unotools/qa/complex/tempfile/Test01.java
+++ b/unotools/qa/complex/tempfile/Test01.java
@@ -23,10 +23,7 @@ import com.sun.star.io.*;
import com.sun.star.uno.UnoRuntime;
import java.util.Random;
-import share.LogWriter;
-
public class Test01 {
- LogWriter m_aLogWriter;
private XMultiServiceFactory m_xMSF = null;
private XSimpleFileAccess m_xSFA = null;
private TestHelper m_aTestHelper = null;
diff --git a/unotools/qa/complex/tempfile/TestHelper.java b/unotools/qa/complex/tempfile/TestHelper.java
index e17075419ddd..28b979658dc2 100644
--- a/unotools/qa/complex/tempfile/TestHelper.java
+++ b/unotools/qa/complex/tempfile/TestHelper.java
@@ -41,16 +41,6 @@ public class TestHelper {
}
}
- public boolean GetTempFileRemove ( XTempFile xTempFile ) {
- boolean b = false;
- try {
- b = xTempFile.getRemoveFile();
- } catch( Exception e) {
- Error( "Cannot get TempFileRemove. exception: " + e );
- }
- return b;
- }
-
public String GetTempFileURL ( XTempFile xTempFile ) {
String sTempFileURL = null;
try {