diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-07-05 21:28:54 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-07-05 21:28:54 (GMT) |
commit | e9cd61941fe3f1766e8bd917caa2dd6271ec9bf1 (patch) | |
tree | 7d487e185ea02dbaf09df38a63783059d59e7d39 /src/engine | |
parent | 948478e12095f480a9c0ad91dc8bae2cd19ac82d (diff) | |
download | SCons-e9cd61941fe3f1766e8bd917caa2dd6271ec9bf1.zip SCons-e9cd61941fe3f1766e8bd917caa2dd6271ec9bf1.tar.gz SCons-e9cd61941fe3f1766e8bd917caa2dd6271ec9bf1.tar.bz2 |
remove unnecessary DeciderNeedsNode exception
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/SCons/Node/__init__.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/engine/SCons/Node/__init__.py b/src/engine/SCons/Node/__init__.py index ff98e2d..3073d59 100644 --- a/src/engine/SCons/Node/__init__.py +++ b/src/engine/SCons/Node/__init__.py @@ -253,21 +253,6 @@ _target_from_source_map = {0 : target_from_source_none, # used by it. # - -class DeciderNeedsNode(Exception): - """ - Indicate that the decider needs the node as well as the target and the dependency. - Normally the node and the target are the same, but in the case of repository - They may be different. Also the NodeInfo is retrieved from the node - """ - def __init__(self, call_this_decider): - """ - :param call_this_decider: to return the decider to call directly since deciders - are called through several levels of indirection - """ - self.decider = call_this_decider - - # # First, the single decider functions # |