diff --git a/actor/registry.go b/actor/registry.go index 4fc9388..c6f135c 100644 --- a/actor/registry.go +++ b/actor/registry.go @@ -35,12 +35,6 @@ func (r *Registry) get(pid *PID) Processer { if proc, ok := r.lookup[pid.ID]; ok { return proc } - /* - if proc, ok := r.lookup["deadletter"]; ok { - return proc - } - - */ return nil // didn't find the processer }