entity.py
changeset 2658 5535857eeaa5
parent 2656 a93ae0f6c0ad
child 2778 3f6dfc312760
child 2871 83c5499e1436
--- a/entity.py	Mon Aug 03 15:16:47 2009 +0200
+++ b/entity.py	Mon Aug 03 15:42:47 2009 +0200
@@ -167,15 +167,6 @@
     # class attributes set automatically at registration time
     e_schema = None
 
-    @classmethod
-    def registered(cls, registry):
-        """build class using descriptor at registration time"""
-        assert cls.id is not None
-        super(Entity, cls).registered(registry)
-        if cls.id != 'Any':
-            cls.__initialize__()
-        return cls
-
     MODE_TAGS = set(('link', 'create'))
     CATEGORY_TAGS = set(('primary', 'secondary', 'generic', 'generated')) # , 'metadata'))
     @classmethod