From 5134816d205fc9733a35bb6fd8a6a1a04ec8bc9e Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Wed, 15 May 2013 02:58:22 +0200 Subject: Remove redundant doxygen doc strings. This is already (identically) documented in the header file. Change-Id: I4a10cb0c1d1b1eee80fd828ab95829fb8128433f --- .../source/core/unointerfacetouniqueidentifiermapper.cxx | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'xmloff') diff --git a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx index bbbc87456a07..568943a04092 100644 --- a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx +++ b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx @@ -41,9 +41,6 @@ UnoInterfaceToUniqueIdentifierMapper::~UnoInterfaceToUniqueIdentifierMapper() ); } -/** returns a unique identifier for the given uno object. IF a uno object is - registered more than once, the returned identifier is always the same. -*/ const OUString& UnoInterfaceToUniqueIdentifierMapper::registerReference( const Reference< XInterface >& rInterface ) { // Be certain that the references we store in our table are to the @@ -63,11 +60,6 @@ const OUString& UnoInterfaceToUniqueIdentifierMapper::registerReference( const R } } -/** registers the given uno object with the given identifier. - - @returns - false, if the given identifier already exists and is not associated with the given interface -*/ bool UnoInterfaceToUniqueIdentifierMapper::registerReference( const OUString& rIdentifier, const Reference< XInterface >& rInterface ) { IdMap_t::const_iterator aIter; @@ -118,10 +110,6 @@ bool UnoInterfaceToUniqueIdentifierMapper::registerReference( const OUString& rI } } -/** @returns - the identifier for the given uno object. If this uno object is not already - registered, an empty string is returned -*/ const OUString& UnoInterfaceToUniqueIdentifierMapper::getIdentifier( const Reference< XInterface >& rInterface ) const { IdMap_t::const_iterator aIter; @@ -136,10 +124,6 @@ const OUString& UnoInterfaceToUniqueIdentifierMapper::getIdentifier( const Refer } } -/** @returns - the uno object that is registered with the given identifier. If no uno object - is registered with the given identifier, an empty reference is returned. -*/ const Reference< XInterface >& UnoInterfaceToUniqueIdentifierMapper::getReference( const OUString& rIdentifier ) const { IdMap_t::const_iterator aIter; -- cgit