Skip to content

Commit

Permalink
Bug fix for issue #318 - YapDatabaseRelationshipTransaction.sourceNod…
Browse files Browse the repository at this point in the history
…eForEdge should return nullable type
  • Loading branch information
robbiehanson committed Apr 28, 2016
1 parent e41924e commit dfb5d29
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -32,15 +32,15 @@ NS_ASSUME_NONNULL_BEGIN
*
* [transaction objectForKey:edge.sourceKey inCollection:edge.sourceCollection];
**/
- (id)sourceNodeForEdge:(YapDatabaseRelationshipEdge *)edge;
- (nullable id)sourceNodeForEdge:(YapDatabaseRelationshipEdge *)edge;

/**
* Shortcut for fetching the destination object for the given edge.
* Equivalent to:
*
* [transaction objectForKey:edge.destinationKey inCollection:edge.destinationCollection];
**/
- (id)destinationNodeForEdge:(YapDatabaseRelationshipEdge *)edge;
- (nullable id)destinationNodeForEdge:(YapDatabaseRelationshipEdge *)edge;

#pragma mark Enumerate

Expand Down

0 comments on commit dfb5d29

Please sign in to comment.