diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-12 14:05:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-12-15 12:36:40 +0000 |
commit | 454ddddd9995ad7c6f865729d160814f5a9f093a (patch) | |
tree | 15b5ee999ec504002cc727284aea0882cc82b01e /connectivity | |
parent | f8fbef265329dc2e6e153d22c0a3317fdc0789e1 (diff) |
java: remove some unused fields and variables
Change-Id: I5d6071096307adbe7df0178000346cf915afa3e7
Reviewed-on: https://gerrit.libreoffice.org/13477
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/qa/complex/connectivity/hsqldb/TestCacheSize.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/connectivity/qa/complex/connectivity/hsqldb/TestCacheSize.java b/connectivity/qa/complex/connectivity/hsqldb/TestCacheSize.java index 66c65e119945..9658bca70675 100644 --- a/connectivity/qa/complex/connectivity/hsqldb/TestCacheSize.java +++ b/connectivity/qa/complex/connectivity/hsqldb/TestCacheSize.java @@ -79,8 +79,6 @@ public class TestCacheSize { // frequent reporting of progress private boolean reportProgress = false; - private XMultiServiceFactory servicefactory = null; - // type of the big table {MEMORY | CACHED | TEXT} private String tableType = "CACHED"; private int cacheScale = 17; @@ -109,8 +107,6 @@ public class TestCacheSize { private boolean multikeytable = false; - private String user; - private String password; private XStatement sStatement; private XConnection cConnection; XDataSource ds; @@ -118,7 +114,6 @@ public class TestCacheSize { private com.sun.star.beans.PropertyValue[] info; public TestCacheSize(XMultiServiceFactory _xmulti,com.sun.star.beans.PropertyValue[] _info,XDriver _drv){ - servicefactory = _xmulti; drv = _drv; info = _info; } @@ -129,9 +124,6 @@ public class TestCacheSize { public void setUp() { - user = "sa"; - password = ""; - try { sStatement = null; cConnection = null; |