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 | 045e454120f48d7d793e2700873eaa072638d7d0 (patch) | |
tree | 92db94a0ad63d1c1c774924046ac10bcdcd99c7a /javaunohelper | |
parent | 47f34f8e99c0531b536827695126314c5ef5f516 (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')
-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 945594069..528f3945f 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) { |