summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2000-11-01 07:06:56 +0000
committerKai Sommerfeld <kso@openoffice.org>2000-11-01 07:06:56 +0000
commitc4f9e6c1d0d669946ca9f74a8607cadcb9e18fb9 (patch)
treedba5253ebd152efdf0a52ff863a6862bb3d3a4fc /ucbhelper
parent41bf1d03e4d55ce09613f844e3a4b0bd0821647a (diff)
Removed: Wrong asserts from isFolder() and isDocument().
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/client/content.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index aee17a45cd2a..580fb519ccaa 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: content.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: kso $ $Date: 2000-10-30 10:08:43 $
+ * last change: $Author: kso $ $Date: 2000-11-01 08:06:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1007,7 +1007,6 @@ sal_Bool Content::isFolder()
>>= bFolder )
return bFolder;
- VOS_ENSURE( sal_False, "Content::isFolder - Got no property value!" );
throw CommandAbortedException();
}
@@ -1020,7 +1019,6 @@ sal_Bool Content::isDocument()
>>= bDoc )
return bDoc;
- VOS_ENSURE( sal_False, "Content::isDocument - Got no property value!" );
throw CommandAbortedException();
}