PINRemoteImageMemoryContainer.m 399 B

12345678910111213141516171819202122
  1. //
  2. // PINRemoteImageMemoryContainer.m
  3. // Pods
  4. //
  5. // Created by Garrett Moon on 3/17/16.
  6. //
  7. //
  8. #import "PINRemoteImageMemoryContainer.h"
  9. @implementation PINRemoteImageMemoryContainer
  10. - (instancetype)init
  11. {
  12. if (self = [super init]) {
  13. _lock = [[PINRemoteLock alloc] initWithName:@"PINRemoteImageMemoryContainer" lockType:PINRemoteLockTypeNonRecursive];
  14. }
  15. return self;
  16. }
  17. @end