Skip to content

Commit

Permalink
Added missing dealloc to last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pokeb committed Sep 17, 2011
1 parent 93b2b1a commit 9f5bebb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Classes/ASIHTTPRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#import "ASIDataCompressor.h"

// Automatically set on build
NSString *ASIHTTPRequestVersion = @"v1.8.1-33 2011-08-20";
NSString *ASIHTTPRequestVersion = @"v1.8.1-44 2011-09-17";

static NSString *defaultUserAgent = nil;

Expand Down
19 changes: 9 additions & 10 deletions Classes/S3/ASIS3Bucket.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,22 @@ + (id)bucketWithOwnerID:(NSString *)anOwnerID ownerName:(NSString *)anOwnerName
return bucket;
}

- (void)dealloc
{
[name release];
[creationDate release];
[ownerID release];
[ownerName release];
[super dealloc];
}

- (NSString *)description
{
return [NSString stringWithFormat:@"Name: %@ creationDate: %@ ownerID: %@ ownerName: %@",[self name],[self creationDate],[self ownerID],[self ownerName]];
}


@synthesize name;
@synthesize creationDate;
@synthesize ownerID;
@synthesize ownerName;

- (void)dealloc
{
[name release];
[creationDate release];
[ownerID release];
[ownerName release];
}

@end

0 comments on commit 9f5bebb

Please sign in to comment.