diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-18 10:19:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-18 16:37:31 +0200 |
commit | 1528f6935e5f63103c6a4e901394fca46c243627 (patch) | |
tree | b04fa67330ff23612b4ff5329442124c5b57d141 /qadevOOo/runner/util/DBTools.java | |
parent | fcfb30e81af51beaa6f4739280e555335c0167e5 (diff) |
cid#1327197 UwF: Unwritten field
Change-Id: Ib132101078a67803d21393c875e55f7a7bf8d225
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138471
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'qadevOOo/runner/util/DBTools.java')
-rw-r--r-- | qadevOOo/runner/util/DBTools.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/qadevOOo/runner/util/DBTools.java b/qadevOOo/runner/util/DBTools.java index 387ba57e8b57..1803395793ea 100644 --- a/qadevOOo/runner/util/DBTools.java +++ b/qadevOOo/runner/util/DBTools.java @@ -90,10 +90,6 @@ public class DBTools { */ public class DataSourceInfo { /** - * Representation of <code>'Name'</code> property. - */ - public String Name = null ; - /** * Representation of <code>'URL'</code> property. */ public String URL = null ; @@ -127,7 +123,6 @@ public class DBTools { XPropertySet props = UnoRuntime.queryInterface (XPropertySet.class, src) ; - if (Name != null) props.setPropertyValue("Name", Name) ; if (URL != null) props.setPropertyValue("URL", URL) ; if (Info != null) props.setPropertyValue("Info", Info) ; if (User != null) props.setPropertyValue("User", User) ; |