no need to allocate a variable that has no use

This commit is contained in:
Bruno Tavares
2014-09-10 17:17:06 +01:00
parent 05bea0dcb8
commit f2cf93d8e5

View File

@@ -61,8 +61,7 @@ sub _identified {
$self->{routing}->{$msg->{message_id}} = $conn; $self->{routing}->{$msg->{message_id}} = $conn;
weaken( $self->{routing}->{$msg->{message_id}} ); weaken( $self->{routing}->{$msg->{message_id}} );
my $action = $self->{message_cb}->($self, $msg); $self->{message_cb}->($self, $msg);
} }
); );