diff options
author | Chirag Manwani <cmkmanwani@gmail.com> | 2016-03-07 02:14:49 +0530 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-07 09:13:53 +0000 |
commit | cc84aaf70ac56092b32d1d329143eca0550dce12 (patch) | |
tree | 2b4d72f227f20c9b59baa476c7118bb1ddacb649 /svl/qa | |
parent | 472d900e81722fd1ce3808c3f46160abcd265f77 (diff) |
tdf#97703 removed empty setUp/tearDown methods
Change-Id: I244d481bce4723d172e26c0d31aab0a541334604
Reviewed-on: https://gerrit.libreoffice.org/22959
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl/qa')
-rw-r--r-- | svl/qa/unit/svl.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 53d05cba1598..7f4c1e875381 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -50,7 +50,6 @@ public: Test(); virtual ~Test(); - virtual void setUp() override; virtual void tearDown() override; void testNumberFormat(); @@ -98,10 +97,6 @@ Test::Test() m_pDefaultTimeZone.reset(icu::TimeZone::createDefault()); } -void Test::setUp() -{ -} - void Test::tearDown() { icu::TimeZone::setDefault(*m_pDefaultTimeZone); |