From 92e1df76e761c6d17e6f2f73bed981efa0dc5934 Mon Sep 17 00:00:00 2001 From: hpique Date: Mon, 10 Feb 2014 17:23:42 +0100 Subject: [PATCH] Redundant lowercaseString (performed above) --- ColorUtils/ColorUtils.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ColorUtils/ColorUtils.m b/ColorUtils/ColorUtils.m index 31c94ef..e7c6ac3 100644 --- a/ColorUtils/ColorUtils.m +++ b/ColorUtils/ColorUtils.m @@ -129,7 +129,7 @@ + (void)registerColor:(UIColor *)color forName:(NSString *)name #endif - [self standardColors][[name lowercaseString]] = color; + [self standardColors][name] = color; } + (instancetype)colorWithString:(NSString *)string