You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Michael Frericks (JIRA)" <ji...@apache.org> on 2006/06/03 14:59:31 UTC

[jira] Commented: (JCR-420) NullPointerException when deleting a property of type REFERENCE

    [ http://issues.apache.org/jira/browse/JCR-420?page=comments#action_12414576 ] 

Michael Frericks commented on JCR-420:
--------------------------------------

The fix didn't make it into the release 1.0.1!?

What happened?



> NullPointerException when deleting a property of type REFERENCE
> ---------------------------------------------------------------
>
>          Key: JCR-420
>          URL: http://issues.apache.org/jira/browse/JCR-420
>      Project: Jackrabbit
>         Type: Bug

>   Components: rmi
>     Versions: 1.0
>     Reporter: Michael Frericks
>     Assignee: Jukka Zitting
>     Priority: Blocker
>      Fix For: 1.0.1

>
> In method org.apache.jackrabbit.rmi.value.SerialValueFactory#createValue a NPE is thrown when parameter value is null.
> Solution:
> Change:
>    public final Value createValue(Node value) throws RepositoryException {
>         return createValue(value.getUUID(), PropertyType.REFERENCE);
>     }
> to
>    public final Value createValue(Node value) throws RepositoryException {
>         if (value == null) {
>            return null;
>         }
>         
>         return createValue(value.getUUID(), PropertyType.REFERENCE);
>     }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira