From e229993a6365674d87634c3393a536f5adee49c4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 4 Feb 2016 09:32:03 +0000 Subject: coverity#1327197 UwF: Unwritten field Change-Id: I520235178bc1eaea5e5bc0497ab8824bf2775456 --- qadevOOo/runner/util/DBTools.java | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'qadevOOo/runner') 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 'IsPasswordRequired' property. */ public Boolean IsPasswordRequired = null ; - /** - * Representation of 'IsReadOnly' property. - */ - private Boolean IsReadOnly = null ; - /** - * Representation of 'TableFilter' property. - */ - private String[] TableFilter = null ; /** * Creates new com.sun.star.sdb.DataSource 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 ; } } -- cgit