diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-05 09:34:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-13 06:47:44 +0000 |
commit | 62223f9a8a4d069b34e37ad0c1bf5b73916a646e (patch) | |
tree | 22220910555ac7f99796c2908392fe008f0c75f5 /sax/qa | |
parent | 14a7ac2033273fdddfb9748d5fa1e1c0f25b64ca (diff) |
loplugin:unnecessaryoverride
Change-Id: I08c55a3023ec2e8990098eeb60e91cd18556e7ae
Reviewed-on: https://gerrit.libreoffice.org/29656
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax/qa')
-rw-r--r-- | sax/qa/cppunit/parser.cxx | 6 | ||||
-rw-r--r-- | sax/qa/cppunit/xmlimport.cxx | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/sax/qa/cppunit/parser.cxx b/sax/qa/cppunit/parser.cxx index 287b712686d3..03b2499b5c4f 100644 --- a/sax/qa/cppunit/parser.cxx +++ b/sax/qa/cppunit/parser.cxx @@ -50,7 +50,6 @@ class ParserTest: public test::BootstrapFixture public: virtual void setUp() override; - virtual void tearDown() override; void parse(); @@ -70,11 +69,6 @@ void ParserTest::setUp() mxParser->setTokenHandler( mxTokenHandler.get() ); } -void ParserTest::tearDown() -{ - test::BootstrapFixture::tearDown(); -} - uno::Reference< io::XInputStream > ParserTest::createStream(const OString& sInput) { uno::Reference< io::XOutputStream > xPipe( io::Pipe::create(m_xContext) ); diff --git a/sax/qa/cppunit/xmlimport.cxx b/sax/qa/cppunit/xmlimport.cxx index 915f26ee4e1d..f824e51db5c5 100644 --- a/sax/qa/cppunit/xmlimport.cxx +++ b/sax/qa/cppunit/xmlimport.cxx @@ -343,7 +343,6 @@ private: public: virtual void setUp() override; - virtual void tearDown() override; XMLImportTest() : BootstrapFixture(true, false) {} void parse(); @@ -390,11 +389,6 @@ void XMLImportTest::setUp() m_sDirPath = m_directories.getPathFromSrc( "/sax/qa/data/" ); } -void XMLImportTest::tearDown() -{ - test::BootstrapFixture::tearDown(); -} - void XMLImportTest::parse() { OUString fileNames[] = {"simple.xml", "defaultns.xml", "inlinens.xml", |