summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-31 10:24:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-31 11:17:48 +0200
commitc3d446522d0bd1ec0f1d9e0c4a83e3472eb108da (patch)
tree191690a7a010e7bfc8947eed186abad69f46d2ff /comphelper
parent2bfd51eab364c6b00603e2fa1e9c354eec90dc7f (diff)
loplugin:unusedmethods
Change-Id: I0d888b565b0b53b318b790926667d7ba49504411 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99854 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/Library_comphelper.mk1
-rw-r--r--comphelper/source/misc/componentmodule.cxx59
2 files changed, 0 insertions, 60 deletions
diff --git a/comphelper/Library_comphelper.mk b/comphelper/Library_comphelper.mk
index d2878d1d69a9..46527d164abb 100644
--- a/comphelper/Library_comphelper.mk
+++ b/comphelper/Library_comphelper.mk
@@ -92,7 +92,6 @@ $(eval $(call gb_Library_add_exception_objects,comphelper,\
comphelper/source/misc/backupfilehelper \
comphelper/source/misc/base64 \
comphelper/source/misc/componentbase \
- comphelper/source/misc/componentmodule \
comphelper/source/misc/configuration \
comphelper/source/misc/configurationhelper \
comphelper/source/misc/debuggerinfo \
diff --git a/comphelper/source/misc/componentmodule.cxx b/comphelper/source/misc/componentmodule.cxx
deleted file mode 100644
index 0c09cb80ccb0..000000000000
--- a/comphelper/source/misc/componentmodule.cxx
+++ /dev/null
@@ -1,59 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include <sal/config.h>
-
-#include <com/sun/star/lang/XSingleComponentFactory.hpp>
-#include <comphelper/componentmodule.hxx>
-
-#include <vector>
-
-namespace comphelper
-{
-
- using namespace ::cppu;
- using ::com::sun::star::uno::Sequence;
- using ::com::sun::star::uno::RuntimeException;
- using ::com::sun::star::uno::Reference;
- using ::com::sun::star::uno::XInterface;
-
- /** implementation for <type>OModule</type>. not threadsafe, has to be guarded by its owner
- */
- class OModuleImpl
- {
- public:
- OModuleImpl();
- };
-
- OModuleImpl::OModuleImpl()
- {
- }
-
- OModule::OModule()
- : m_pImpl(new OModuleImpl)
- {
- }
-
- OModule::~OModule()
- {
- }
-
-} // namespace comphelper
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */