Skip to content

Commit

Permalink
Merge pull request #1763 from Amrysliu/remove_args
Browse files Browse the repository at this point in the history
consoles::sshVirtsh: Remove the unused argument
  • Loading branch information
mergify[bot] committed Sep 6, 2021
2 parents 43e6644 + c6102e6 commit b349ba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions consoles/sshVirtsh.pm
Expand Up @@ -562,9 +562,9 @@ sub attach_to_running ($self, $args) {
}
}

sub start_serial_grab ($self, $args) { $self->backend->start_serial_grab($self->name) }
sub start_serial_grab ($self) { $self->backend->start_serial_grab($self->name) }

sub stop_serial_grab ($self, $args) { $self->backend->stop_serial_grab($self->name) }
sub stop_serial_grab ($self) { $self->backend->stop_serial_grab($self->name) }


=head2 run_cmd
Expand Down

0 comments on commit b349ba2

Please sign in to comment.