diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-19 17:37:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-20 10:47:32 +0100 |
commit | b670e88bc1505ef33d71da745ff96dac400ecb0f (patch) | |
tree | 86d0fd5adf4cbc08883b641019031723d6ef9f64 /connectivity | |
parent | 09dc5c51fa0de04e110190c08678758451b7f9c5 (diff) |
loplugin:emptyif (macOS)
Change-Id: I0abd0ace30f172d0991be697e6f78edd50ddeaaa
Reviewed-on: https://gerrit.libreoffice.org/48214
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx b/connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx index cda96cdcbf4e..0c09f95211e0 100644 --- a/connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx +++ b/connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx @@ -182,9 +182,6 @@ sal_Bool SAL_CALL MacabDatabaseMetaData::supportsNonNullableColumns( ) OUString SAL_CALL MacabDatabaseMetaData::getCatalogTerm( ) { - if (m_bUseCatalog) - { - } return OUString(); } @@ -206,9 +203,6 @@ sal_Bool SAL_CALL MacabDatabaseMetaData::supportsDifferentTableCorrelationNames( sal_Bool SAL_CALL MacabDatabaseMetaData::isCatalogAtStart( ) { - if (m_bUseCatalog) - { - } return false; } |