summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-07 13:42:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-08 08:44:32 +0100
commitbb7ade140df807b6a0f12766a1365b8f8d0fd342 (patch)
treed90de305c953a613373d27f8f89bb95c43ee9eb4 /dbaccess
parent44d5188b2fd8afc82aa8fda1ad4b374734129aea (diff)
loplugin:unusedmethods
Change-Id: Id6b4edd265cb6bef31c72e2a0a440211d51c7c33 Reviewed-on: https://gerrit.libreoffice.org/50900 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/filter/hsqldb/columndef.hxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/dbaccess/source/filter/hsqldb/columndef.hxx b/dbaccess/source/filter/hsqldb/columndef.hxx
index bded07bf5b4c..5b5c68f7e67a 100644
--- a/dbaccess/source/filter/hsqldb/columndef.hxx
+++ b/dbaccess/source/filter/hsqldb/columndef.hxx
@@ -34,11 +34,6 @@ public:
sal_Int32 getDataType() const { return m_eType; }
bool isPrimaryKey() const { return m_bPrimaryKey; }
bool isNullable() const { return m_bNullable; }
- sal_Int32 getAutoIncrementDefault() const
- {
- assert(m_nAutoIncrement > 0);
- return m_nAutoIncrement;
- }
bool isAutoIncremental() const { return m_nAutoIncrement >= 0; }
const std::vector<sal_Int32> getParams() const { return m_aParams; }
};