diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-13 14:38:49 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-13 14:38:49 -0400 |
commit | c83093bb29c1f6d0e580385d9e7c5eb5f5846ac6 (patch) | |
tree | d9c0772a5a80f4cd5fb581ccb6e6ee5acf71e36b /src/server/Client.ts | |
parent | ed9bb54c6307e809c6c6aa40c7d77cd3480e7e73 (diff) |
some clean up
Diffstat (limited to 'src/server/Client.ts')
-rw-r--r-- | src/server/Client.ts | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/server/Client.ts b/src/server/Client.ts index 02402a5a0..b4c419438 100644 --- a/src/server/Client.ts +++ b/src/server/Client.ts @@ -1,15 +1,12 @@ import { computed } from "mobx"; export class Client { + private _guid: string; + constructor(guid: string) { - this.guid = guid; + this._guid = guid; } - private guid: string; - - @computed - public get GUID(): string { - return this.guid; - } + @computed public get GUID(): string { return this._guid; } }
\ No newline at end of file |