summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorPetr Vorel <petr.vorel@gmail.com>2012-02-18 23:50:22 +0100
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-02-19 14:42:10 +0400
commit37159db96ff0ce15b0b91502ba79a86f21a8f29a (patch)
tree2c1a767b0b38c62bb012267e65112c0bea6f6b28 /l10ntools
parentaf79fcb204efeafb48659ed4a97433b7e2cc2f84 (diff)
Remove unused code
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/merge.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx
index b9b8d400ec9b..55c62d14cf98 100644
--- a/l10ntools/source/merge.cxx
+++ b/l10ntools/source/merge.cxx
@@ -129,22 +129,6 @@ void MergeData::Insert(PFormEntrys* pfEntrys )
aMap.insert( PFormEntrysHashMap::value_type( rtl::OString(RTL_CONSTASCII_STRINGPARAM("HACK")) , pfEntrys ) );
}
-rtl::OString MergeData::Dump()
-{
- printf("MergeData sTyp = %s , sGid = %s , sLid =%s , sFilename = %s\n",
- sTyp.getStr(), sGID.getStr(), sLID.getStr(), sFilename.getStr());
-
- PFormEntrysHashMap::const_iterator idbg;
- for( idbg = aMap.begin() ; idbg != aMap.end(); ++idbg )
- {
- printf("aMap[ %s ] = " ,idbg->first.getStr());
- ( (PFormEntrys*)(idbg->second) )->Dump();
- printf("\n");
- }
- printf("\n");
- return rtl::OString(RTL_CONSTASCII_STRINGPARAM("MergeData\n"));
-}
-
PFormEntrys* MergeData::GetPFObject( const rtl::OString& rPFO )
{
if( aMap.find( rtl::OString(RTL_CONSTASCII_STRINGPARAM("HACK")) ) != aMap.end() )