File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ + (Environment *) loadPlist
71
71
return [self withDictionary: mutDict];
72
72
}
73
73
74
- - (BOOL ) savePlist : (NSError **) error
74
+ - (BOOL ) savePlist : (NSError *__autoreleasing *) error
75
75
{
76
76
NSLog ( @" Saving environment to %@ " , savedEnvironmentPath );
77
77
return [_dict writeToFile: savedEnvironmentPath
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ - (BOOL) writeToFile: (NSString *) path
24
24
atomically : (BOOL ) atomically
25
25
createParent : (BOOL ) createParent
26
26
createAncestors : (BOOL ) createAncestors
27
- error : (NSError **) error
27
+ error : (NSError * __autoreleasing *) error
28
28
{
29
29
if ( createAncestors && !createParent ) {
30
30
@throw [NSException exceptionWithName: @" IllegalArgumentException"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ @implementation NSFileManager (EnvLib)
21
21
22
22
- (BOOL ) ensureParentDirectoryExistsOf : (NSString *) childPath
23
23
withIntermediateDirectories : (BOOL ) withIntermediateDirectories
24
- error : (NSError **) error
24
+ error : (NSError * __autoreleasing *) error
25
25
{
26
26
NSString *parentPath = [childPath stringByDeletingLastPathComponent ];
27
27
BOOL isDir = NO ;
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ - (void) applyChanges
74
74
}
75
75
}
76
76
77
- - (BOOL ) installAgent : (NSError **) error
77
+ - (BOOL ) installAgent : (NSError *__autoreleasing *) error
78
78
{
79
79
NSBundle *bundle = self.bundle ;
80
80
NSURL *bundleUrl = bundle.bundleURL ;
You can’t perform that action at this time.
0 commit comments