diff options
| author | Aubrey-Li <aubreylys@hotmail.com> | 2022-04-26 23:00:33 -0400 |
|---|---|---|
| committer | Aubrey-Li <aubreylys@hotmail.com> | 2022-04-26 23:00:33 -0400 |
| commit | 840ae11365edd744f37fb266c0ae33094cd0d9a8 (patch) | |
| tree | 8938fceaac1eb7d3f630fda4be8e41fa27b883e3 /src/server/DashSession/Session/agents/applied_session_agent.ts | |
| parent | 313c761f4207d55ebda05c18c2bd4a42539fdfe0 (diff) | |
| parent | 08217336445cf2b3cd3efbe97e3c83525f02bf1b (diff) | |
Merge branch 'master' into presentation_upgrade
Diffstat (limited to 'src/server/DashSession/Session/agents/applied_session_agent.ts')
| -rw-r--r-- | src/server/DashSession/Session/agents/applied_session_agent.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/DashSession/Session/agents/applied_session_agent.ts b/src/server/DashSession/Session/agents/applied_session_agent.ts index 12064668b..8339a06dc 100644 --- a/src/server/DashSession/Session/agents/applied_session_agent.ts +++ b/src/server/DashSession/Session/agents/applied_session_agent.ts @@ -9,8 +9,8 @@ export abstract class AppliedSessionAgent { // the following two methods allow the developer to create a custom // session and use the built in customization options for each thread - protected abstract async initializeMonitor(monitor: Monitor): Promise<string>; - protected abstract async initializeServerWorker(): Promise<ServerWorker>; + protected abstract initializeMonitor(monitor: Monitor): Promise<string>; + protected abstract initializeServerWorker(): Promise<ServerWorker>; private launched = false; |
