diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:41:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:41:18 +0100 |
commit | 5c8c13887952c112566c4145173a93d7d39c2dd6 (patch) | |
tree | 78a2ebea69bc69059e1a3a86047d1085345bd43e /cosv/source | |
parent | 5a7bd335ef32121c2fd500e9688dd6bd4fb23662 (diff) |
remove unused PushFront
Diffstat (limited to 'cosv/source')
-rw-r--r-- | cosv/source/storage/dirchain.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cosv/source/storage/dirchain.cxx b/cosv/source/storage/dirchain.cxx index c9c0d24f5f8f..21b0f66ab7ee 100644 --- a/cosv/source/storage/dirchain.cxx +++ b/cosv/source/storage/dirchain.cxx @@ -81,18 +81,6 @@ DirectoryChain::Set( const char * i_sSubPath, } void -DirectoryChain::PushFront( const String & i_sName ) -{ - aPath.insert( aPath.begin(), i_sName ); -} - -void -DirectoryChain::PushFront( const DirectoryChain & i_sPath ) -{ - aPath.insert( aPath.begin(), i_sPath.Begin(), i_sPath.End() ); -} - -void DirectoryChain::PushBack( const String & i_sName ) { aPath.push_back(i_sName); |