diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2012-10-31 00:56:03 -0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-31 16:48:43 +0000 |
commit | 036e4a5a89c020ddccf91a7fc8704bf6ec0b5d6c (patch) | |
tree | 0dc0532c560fa8f8f7f1f62a311208380796376e /unotest | |
parent | 664012b313f3c3cd5666fc6f943fc8152e503e23 (diff) |
Remove unused method from test
Change-Id: Id54d9bd2963573c4b8e77de0dfafe33ea5882d32
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/947
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'unotest')
-rw-r--r-- | unotest/inc/unotest/bootstrapfixturebase.hxx | 3 | ||||
-rw-r--r-- | unotest/source/cpp/bootstrapfixturebase.cxx | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/unotest/inc/unotest/bootstrapfixturebase.hxx b/unotest/inc/unotest/bootstrapfixturebase.hxx index 9ede450c568a..300539682b8d 100644 --- a/unotest/inc/unotest/bootstrapfixturebase.hxx +++ b/unotest/inc/unotest/bootstrapfixturebase.hxx @@ -83,9 +83,6 @@ public: // return a URL to a given c-str path from the solver directory ::rtl::OUString getURLFromSolver( const char *pPath ); - // return a Path to a given c-str path from the solver directory - ::rtl::OUString getPathFromSolver( const char *pPath ); - virtual void setUp(); virtual void tearDown(); diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx index 9c7863280092..0a4e15c87edf 100644 --- a/unotest/source/cpp/bootstrapfixturebase.cxx +++ b/unotest/source/cpp/bootstrapfixturebase.cxx @@ -86,11 +86,6 @@ test::BootstrapFixtureBase::~BootstrapFixtureBase() return m_aSolverRootURL + rtl::OUString::createFromAscii( pPath ); } -::rtl::OUString test::BootstrapFixtureBase::getPathFromSolver( const char *pPath ) -{ - return m_aSolverRootPath + rtl::OUString::createFromAscii( pPath ); -} - void test::BootstrapFixtureBase::setUp() { // set UserInstallation to user profile dir in test/user-template |