]> git.saurik.com Git - cydia.git/commitdiff
Minor simplification to StripVersion_: ?: over if.
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 1 Dec 2010 00:03:35 +0000 (16:03 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 1 Dec 2010 09:46:26 +0000 (01:46 -0800)
MobileCydia.mm

index 970ffa3d7c9c9f7697cf8bcb4c83054f6feb7d21..dc0b738ae5486c9298be97f8677fc2a7aada4ae8 100644 (file)
@@ -1101,9 +1101,7 @@ NSString *SizeString(double size) {
 
 static _finline const char *StripVersion_(const char *version) {
     const char *colon(strchr(version, ':'));
-    if (colon != NULL)
-        version = colon + 1;
-    return version;
+    return colon == NULL ? version : colon + 1;
 }
 
 NSString *LocalizeSection(NSString *section) {