Skip to content

Commit

Permalink
Make SLObject.repository's property attribute strong
Browse files Browse the repository at this point in the history
  • Loading branch information
hideya committed Feb 10, 2016
1 parent 319ec70 commit 06cee96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SLRemoting/SLObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ extern NSString *SLObjectInvalidRepositoryDescription;
@interface SLObject : NSObject

/** The SLRepository defining the type of this object. */
@property (readonly, nonatomic, weak) SLRepository *repository;
@property (readonly, nonatomic, strong) SLRepository *repository;

/**
* The complete set of parameters to be used to identify/create this object on
Expand Down
2 changes: 1 addition & 1 deletion SLRemoting/SLObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@interface SLObject()

@property (readwrite, nonatomic, weak) SLRepository *repository;
@property (readwrite, nonatomic, strong) SLRepository *repository;
@property (readwrite, nonatomic, strong) NSDictionary *creationParameters;

@end
Expand Down

0 comments on commit 06cee96

Please sign in to comment.