diff --git a/src/commands/framework.py b/src/commands/framework.py
index 15daa250ffb12653be1fa8aa408e2a0cb930b1dd..bb15fd2caef027cd97f821be38939659f7666fad 100644
--- a/src/commands/framework.py
+++ b/src/commands/framework.py
@@ -222,11 +222,6 @@ class Dispatcher(type):
             if hoster not in bases:
                 raise CommandInternalError("Should be hosted by the same processors it inherits from")
 
-    @classmethod
-    def check_if_conformed(cls, dispatchable, hostable):
-        if dispatchable and hostable:
-            raise CommandInternalError("Processor can not be dispatchable and hostable at the same time")
-
     @classmethod
     def register_processor(cls, proc):
         cls.table[proc] = {}