Open borut-t opened 11 years ago
On line 360 I get the following compiler warning regarding NSString:
TBXML.m:360:25: Using 'stringWithString:' with a literal is redundant
Could you please fix this line from
value = [NSString stringWithString:@""];
to
value = @"";
Thanks!
See pull request #9.
On line 360 I get the following compiler warning regarding NSString:
Could you please fix this line from
to
Thanks!