Monotone-Parent: a1d5297ee60258830645ba6ddadf4cdd9b01b0fd

Monotone-Revision: 9526db8a187e1a3f30ac4b5933d589fcb9dbbc40

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-08-27T16:09:26
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2009-08-27 16:09:26 +00:00
parent cfe59955d9
commit d72fc4792b
3 changed files with 28 additions and 22 deletions
+2 -5
View File
@@ -114,12 +114,9 @@
purified = [NSMutableArray arrayWithCapacity: [self count]];
strings = [self objectEnumerator];
string = [strings nextObject];
while (string)
{
while ((string = [strings nextObject]))
if ([string length] > 0)
[purified addObject: [string escapedForCards]];
string = [strings nextObject];
}
return purified;
}