More code removal

This commit is contained in:
David Négrier 2020-05-15 22:08:53 +02:00
parent 5a3668a12e
commit 4e745f20f7
2 changed files with 1 additions and 20 deletions

View file

@ -14,14 +14,6 @@ export class Point implements PointInterface{
this.y = y;
this.direction = direction;
}
toJson(){
return {
x : this.x,
y: this.y,
direction: this.direction
}
}
}
export class MessageUserPosition extends Message{
@ -31,14 +23,4 @@ export class MessageUserPosition extends Message{
super(message);
this.position = new Point(message.position.x, message.position.y, message.position.direction);
}
toString() {
return JSON.stringify(
Object.assign(
super.toJson(),
{
position: this.position.toJson()
})
);
}
}

View file

@ -2,5 +2,4 @@ export interface PointInterface {
x: number;
y: number;
direction: string;
toJson() : object;
}
}