[ http://issues.apache.org/jira/browse/JCR-420?page=comments#action_12414579 ]
Michael Frericks commented on JCR-420: -------------------------------------- Sorry, my fault. I attached the old (1.0) sources. > 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
