Skip to content

Commit

Permalink
Simplify the method
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed Nov 23, 2024
1 parent 955465d commit 903d1f5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions XCode/PBXGroup.m
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,8 @@ - (void) setPath: (NSString *)object; // setter

- (NSString *) description
{
NSString *description = [super description];
NSString *additional = [NSString stringWithFormat: @"<%@ - name = %@, path = %@>", description, _name, _path];
return additional;
return [NSString stringWithFormat: @"<%@ - name = %@, path = %@>",
[super description], _name, _path];
}

@end

0 comments on commit 903d1f5

Please sign in to comment.