view.py
changeset 9990 c84ad981fc4a
parent 9821 2077c8da1893
parent 9918 228c3571e222
child 10006 8391bf718485
--- a/view.py	Tue Sep 23 17:34:36 2014 +0200
+++ b/view.py	Thu Sep 25 15:49:13 2014 +0200
@@ -536,14 +536,6 @@
     __registry__ = 'adapters'
 
 
-class auto_unwrap_bw_compat(type):
-    def __new__(mcs, name, bases, classdict):
-        cls = type.__new__(mcs, name, bases, classdict)
-        if not classdict.get('__needs_bw_compat__'):
-            unwrap_adapter_compat(cls)
-        return cls
-
-
 class EntityAdapter(Adapter):
     """base class for entity adapters (eg adapt an entity to an interface)"""
     def __init__(self, _cw, **kwargs):