diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-06 12:34:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-06 12:34:15 +0100 |
commit | b397c4b8cb9f1a0f2182f1d4b480bf77951aa68f (patch) | |
tree | bd48f349a823755911c001f583f1aad213203f6a | |
parent | 22e1fc5402c17c8459873e621f7630674d2b98f1 (diff) |
bSilent is unused
...ever since c25ec0608a167bcf1d891043f02273761c351701 "initial import"
Change-Id: Iccee867aa9722ced2f66d4d8b8911c5e191502c2
-rw-r--r-- | connectivity/source/drivers/ado/AConnection.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/drivers/ado/AConnection.cxx b/connectivity/source/drivers/ado/AConnection.cxx index d5a2a6066973..15432c3b4611 100644 --- a/connectivity/source/drivers/ado/AConnection.cxx +++ b/connectivity/source/drivers/ado/AConnection.cxx @@ -108,15 +108,12 @@ void OConnection::construct(const OUString& url,const Sequence< PropertyValue >& aDSN = aDSN.copy(7); sal_Int32 nTimeout = 20; - bool bSilent = true; const PropertyValue *pIter = info.getConstArray(); const PropertyValue *pEnd = pIter + info.getLength(); for(;pIter != pEnd;++pIter) { if(pIter->Name == "Timeout") pIter->Value >>= nTimeout; - else if(pIter->Name == "Silent") - pIter->Value >>= bSilent; else if(pIter->Name == "user") pIter->Value >>= aUID; else if(pIter->Name == "password") |