Deleted double-retain in RMFileTileImage.m to close Issue 51.
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -42,7 +42,7 @@ | @@ -42,7 +42,7 @@ | ||
42 | image = CGImageCreateWithPNGDataProvider (provider, NULL, true, kCGRenderingIntentDefault); | 42 | image = CGImageCreateWithPNGDataProvider (provider, NULL, true, kCGRenderingIntentDefault); |
43 | */ | 43 | */ |
44 | image = [[UIImage alloc] initWithContentsOfFile:file]; | 44 | image = [[UIImage alloc] initWithContentsOfFile:file]; |
45 | - [image retain]; | 45 | +// [image retain]; |
46 | // [self setImageToData:data]; | 46 | // [self setImageToData:data]; |
47 | 47 | ||
48 | return self; | 48 | return self; |
-
Please register or login to post a comment