diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-02-04 09:32:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-02-04 10:26:24 +0000 |
commit | e229993a6365674d87634c3393a536f5adee49c4 (patch) | |
tree | 62d1abfcb48cb24e98c2f147f2f862ff2ee11fcc /qadevOOo | |
parent | 39accf65cdfd62693d2b46b822215d88b462c2f3 (diff) |
coverity#1327197 UwF: Unwritten field
Change-Id: I520235178bc1eaea5e5bc0497ab8824bf2775456
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/util/DBTools.java | 11 |
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 ; } } |