Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorred-agent <hell.director@gmail.com>2009-09-16 00:40:29 +0400
committerred-agent <hell.director@gmail.com>2009-09-16 00:40:29 +0400
commit4dae0bde445fbce3870a1bcf290647bb69ae0f47 (patch)
treeda477ff07d3cdead964464178c6a05d47b34ec7f
parent6630d88c0817bc3243269a91d23c4d2b9d5375d4 (diff)
Removed unused code
-rw-r--r--src/commands/framework.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/commands/framework.py b/src/commands/framework.py
index 15daa250f..bb15fd2ca 100644
--- a/src/commands/framework.py
+++ b/src/commands/framework.py
@@ -223,11 +223,6 @@ class Dispatcher(type):
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] = {}
inherit = proc.__dict__.get('INHERIT')