summaryrefslogtreecommitdiff
path: root/package/source
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-01-16 16:37:57 +0100
committerDavid Tardon <dtardon@redhat.com>2014-01-16 16:40:00 +0100
commitc20db8735e3f30cf61940e8c1da739efcb00ae22 (patch)
tree9bb0d0d7224f9180f4a17650c305251099ec894d /package/source
parent04a9214fbf6da2ec9fa36fca4bb949d8f712c982 (diff)
Revert "impl. enumeration for ZipPackage"
This reverts commit 5b2cca80eeb2c8ee210820cc8ed95e5d69214807. Also reverts commit 86a5053df0d755d10121d65c533f3d327340a0fd.
Diffstat (limited to 'package/source')
-rw-r--r--package/source/zippackage/ZipPackage.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx
index bf0e026bcd97..f20b1f07414c 100644
--- a/package/source/zippackage/ZipPackage.cxx
+++ b/package/source/zippackage/ZipPackage.cxx
@@ -66,7 +66,6 @@
#include <osl/time.h>
#include "com/sun/star/io/XAsyncOutputMonitor.hpp"
-#include <cassert>
#include <cstring>
#include <memory>
#include <vector>
@@ -778,30 +777,6 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments )
}
}
-::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL ZipPackage::createEnumeration()
- throw( RuntimeException )
-{
- assert(m_pRootFolder);
-
- return m_pRootFolder->createEnumeration();
-}
-
-::com::sun::star::uno::Type SAL_CALL ZipPackage::getElementType()
- throw( RuntimeException )
-{
- assert(m_pRootFolder);
-
- return m_pRootFolder->getElementType();
-}
-
-sal_Bool SAL_CALL ZipPackage::hasElements()
- throw( RuntimeException )
-{
- assert(m_pRootFolder);
-
- return m_pRootFolder->hasElements();
-}
-
Any SAL_CALL ZipPackage::getByHierarchicalName( const OUString& aName )
throw( NoSuchElementException, RuntimeException )
{