diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 07:44:50 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 07:44:50 +0000 |
commit | 512d804549efacaa07afc252038ecc7301d1d3fe (patch) | |
tree | d9e4a6b30152caed4ea506327d1a93548d144bd8 /javaunohelper/com | |
parent | 3eeb7523ee14046453c379a1dd5e1ef5565f9a79 (diff) |
INTEGRATION: CWS dba24e_SRC680 (1.9.50); FILE MERGED
2007/12/19 10:00:03 oj 1.9.50.1: #i84339# remove check for read only attribute
Diffstat (limited to 'javaunohelper/com')
-rw-r--r-- | javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java index d78b882173b4..fd2b28918dd4 100644 --- a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java +++ b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java @@ -4,9 +4,9 @@ * * $RCSfile: PropertySet.java,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-07 18:40:34 $ + * last change: $Author: vg $ $Date: 2008-01-29 08:44:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -399,8 +399,6 @@ XMultiPropertySet Property prop= getProperty(name); if (prop == null) throw new UnknownPropertyException("The property " + name + " is unknown"); - if ((prop.Attributes & PropertyAttribute.READONLY) == PropertyAttribute.READONLY) - return new Any(new Type(void.class), null); synchronized (this) { |