Skip to content

Commit

Permalink
remove copy-pasted parameter to getEmergencyStop
Browse files Browse the repository at this point in the history
  • Loading branch information
SillyFreak committed Jul 17, 2019
1 parent d73e4ce commit a859c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hedgehog/client/hedgehogClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class HedgehogClient {
await this.send(new emergency.Action(activate));
}

public async getEmergencyStop(port: number): Promise<boolean> {
public async getEmergencyStop(): Promise<boolean> {
let reply = await this.send<emergency.Reply>(new emergency.Request());
return reply.active;
}
Expand Down

0 comments on commit a859c91

Please sign in to comment.