diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-08 22:45:22 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-08 22:45:22 -0400 |
commit | 5e086920bf97297a02bcd38faea56454c2220279 (patch) | |
tree | 9b7fa3ec3df3a522b5676dc743afc17ef2b5cf09 /src/server/Client.ts | |
parent | cecbafdd8e42b1fa021a54fe624c3cf68e8645bd (diff) |
Enabled semi-colon and braces linter rule
Diffstat (limited to 'src/server/Client.ts')
-rw-r--r-- | src/server/Client.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/Client.ts b/src/server/Client.ts index 6b8841658..02402a5a0 100644 --- a/src/server/Client.ts +++ b/src/server/Client.ts @@ -2,14 +2,14 @@ import { computed } from "mobx"; export class Client { constructor(guid: string) { - this.guid = guid + this.guid = guid; } private guid: string; @computed public get GUID(): string { - return this.guid + return this.guid; } }
\ No newline at end of file |