Adding a category to NSProxy that fixes a bug so as to allow NSProxies to be
[ITFoundation.git] / ITCategory-NSProxy.m
diff --git a/ITCategory-NSProxy.m b/ITCategory-NSProxy.m
new file mode 100644 (file)
index 0000000..e4f73c4
--- /dev/null
@@ -0,0 +1,9 @@
+#import "ITCategory-NSProxy.h"
+
+@implementation NSProxy (ITCategory)
+
+- (NSString *)_copyDescription {
+       return [[self description] retain];
+}
+
+@end