fhdl/decorators: remove deprecated API
authorSebastien Bourdeauducq <sb@m-labs.hk>
Sat, 12 Sep 2015 11:34:44 +0000 (19:34 +0800)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Sat, 12 Sep 2015 11:34:44 +0000 (19:34 +0800)
migen/fhdl/decorators.py

index 00ea2d224e93c5a5c249a41aeb6590528fa0653b..0d566f938e571c1e22f234cbad905c01aec4aadd 100644 (file)
@@ -1,5 +1,3 @@
-import warnings
-
 from migen.fhdl.structure import *
 from migen.fhdl.module import Module
 from migen.fhdl.tools import insert_reset, rename_clock_domain
@@ -53,16 +51,6 @@ class ModuleTransformer:
         else:
             return self.wrap_class(victim)
 
-    @classmethod
-    def adhoc(cls, i, *args, **kwargs):
-        warnings.warn("deprecated, use the plain transformer", DeprecationWarning, 2)
-        return cls(*args, **kwargs)(i)
-
-
-def DecorateModule(transformer, *args, **kwargs):
-    warnings.warn("deprecated, use the plain transformer", DeprecationWarning, 2)
-    return transformer.__self__(*args, **kwargs)
-
 
 class ControlInserter(ModuleTransformer):
     control_name = None  # override this