fix automatic lint

This commit is contained in:
Marin Petrunić
2020-06-19 12:49:40 +02:00
parent 9b11560183
commit 8327a60356
26 changed files with 1457 additions and 1509 deletions

View File

@ -1,10 +1,10 @@
export class FailedIKError extends Error {
public initialMsg;
constructor(initialMsg, message?: string) {
super(message);
constructor (initialMsg, message?: string) {
super(message)
this.initialMsg = initialMsg;
this.name = "FailedIKhandshake";
this.initialMsg = initialMsg
this.name = 'FailedIKhandshake'
}
};
}