From cc1352d4add543f6ab48d7df60b52f2311a083e9 Mon Sep 17 00:00:00 2001
From: Daniel Boelzle <dbo@openoffice.org>
Date: Thu, 10 May 2001 13:40:58 +0000
Subject: removed Sequence<>::getElementType()

---
 cppu/inc/com/sun/star/uno/Sequence.h   | 10 ++--------
 cppu/inc/com/sun/star/uno/Sequence.hxx | 10 ++--------
 2 files changed, 4 insertions(+), 16 deletions(-)

(limited to 'cppu/inc')

diff --git a/cppu/inc/com/sun/star/uno/Sequence.h b/cppu/inc/com/sun/star/uno/Sequence.h
index 0593f31170bd..94db0fd8c308 100644
--- a/cppu/inc/com/sun/star/uno/Sequence.h
+++ b/cppu/inc/com/sun/star/uno/Sequence.h
@@ -2,9 +2,9 @@
  *
  *  $RCSfile: Sequence.h,v $
  *
- *  $Revision: 1.10 $
+ *  $Revision: 1.11 $
  *
- *  last change: $Author: dbo $ $Date: 2001-03-30 10:51:55 $
+ *  last change: $Author: dbo $ $Date: 2001-05-10 14:40:58 $
  *
  *  The Contents of this file are made available subject to the terms of
  *  either of the following licenses
@@ -173,12 +173,6 @@ public:
     */
     inline Sequence< E > & SAL_CALL operator = ( const Sequence< E > & rSeq ) SAL_THROW( () );
 
-    /** Gets type of elements.
-        <br>
-        @return type of element
-    */
-    inline const Type & getElementType() const SAL_THROW( () );
-
     /** Gets length of sequence.
         <br>
         @return length of sequence
diff --git a/cppu/inc/com/sun/star/uno/Sequence.hxx b/cppu/inc/com/sun/star/uno/Sequence.hxx
index 166e8d853da4..256748be595a 100644
--- a/cppu/inc/com/sun/star/uno/Sequence.hxx
+++ b/cppu/inc/com/sun/star/uno/Sequence.hxx
@@ -2,9 +2,9 @@
  *
  *  $RCSfile: Sequence.hxx,v $
  *
- *  $Revision: 1.11 $
+ *  $Revision: 1.12 $
  *
- *  last change: $Author: dbo $ $Date: 2001-03-30 10:51:55 $
+ *  last change: $Author: dbo $ $Date: 2001-05-10 14:40:58 $
  *
  *  The Contents of this file are made available subject to the terms of
  *  either of the following licenses
@@ -143,12 +143,6 @@ inline Sequence< E >::~Sequence() SAL_THROW( () )
 }
 //__________________________________________________________________________________________________
 template< class E >
-inline const Type & Sequence< E >::getElementType() const SAL_THROW( () )
-{
-    return ::getCppuType( (const ElementType *)0 );
-}
-//__________________________________________________________________________________________________
-template< class E >
 inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () )
 {
     const Type & rType = ::getCppuType( this );
-- 
cgit