Revision
2892
Author
mattaimonetti@gmail.com
Date
2009-10-23 18:53:16 -0700 (Fri, 23 Oct 2009)

Log Message

updated class.c to reflect the change in Set

Modified Paths

Diff

Modified: MacRuby/trunk/class.c (2891 => 2892)


--- MacRuby/trunk/class.c	2009-10-24 01:53:14 UTC (rev 2891)
+++ MacRuby/trunk/class.c	2009-10-24 01:53:16 UTC (rev 2892)
@@ -49,11 +49,6 @@
 		RCLASS_SET_VERSION_FLAG(ocklass, RCLASS_IS_STRING_SUBCLASS);
 		return true;
 	    }
-	    if (ocsuper == (Class)rb_cSet) {
-		rb_objc_install_set_primitives(ocklass);
-		RCLASS_SET_VERSION_FLAG(ocklass, RCLASS_IS_SET_SUBCLASS);
-		return true;
-	    }
 	    ocsuper = class_getSuperclass(ocsuper);
 	}
 	while (ocsuper != NULL);