summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/util/DBTools.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/qadevOOo/runner/util/DBTools.java b/qadevOOo/runner/util/DBTools.java
index cc6549432154..52fb344b1bf2 100644
--- a/qadevOOo/runner/util/DBTools.java
+++ b/qadevOOo/runner/util/DBTools.java
@@ -113,14 +113,6 @@ public class DBTools {
* Representation of <code>'IsPasswordRequired'</code> property.
*/
public Boolean IsPasswordRequired = null ;
- /**
- * Representation of <code>'IsReadOnly'</code> property.
- */
- private Boolean IsReadOnly = null ;
- /**
- * Representation of <code>'TableFilter'</code> property.
- */
- private String[] TableFilter = null ;
/**
* Creates new <code>com.sun.star.sdb.DataSource</code> service
@@ -141,9 +133,6 @@ public class DBTools {
if (User != null) props.setPropertyValue("User", User) ;
if (Password != null) props.setPropertyValue("Password", Password) ;
if (IsPasswordRequired != null) props.setPropertyValue("IsPasswordRequired", IsPasswordRequired) ;
- if (IsReadOnly != null) props.setPropertyValue("IsReadOnly", IsReadOnly) ;
- if (TableFilter != null) props.setPropertyValue("TableFilter", TableFilter) ;
-
return src ;
}
}