Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabich committed Apr 10, 2023
1 parent 6e54a57 commit 5307025
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions packages/code-studio/src/main/SessionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ import dh, {
} from '@deephaven/jsapi-shim';
import {
LOGIN_OPTIONS_REQUEST,
LOGIN_OPTIONS_RESPONSE,
requestParentResponse,
SESSION_DETAILS_REQUEST,
SESSION_DETAILS_RESPONSE,
} from '@deephaven/jsapi-utils';
import Log from '@deephaven/log';
import shortid from 'shortid';
Expand Down Expand Up @@ -100,17 +98,11 @@ export function createCoreClient(): CoreClient {
}

async function requestParentLoginOptions(): Promise<LoginOptions> {
return requestParentResponse<LoginOptions>(
LOGIN_OPTIONS_REQUEST,
LOGIN_OPTIONS_RESPONSE
);
return requestParentResponse<LoginOptions>(LOGIN_OPTIONS_REQUEST);
}

async function requestParentSessionDetails(): Promise<SessionDetails> {
return requestParentResponse<SessionDetails>(
SESSION_DETAILS_REQUEST,
SESSION_DETAILS_RESPONSE
);
return requestParentResponse<SessionDetails>(SESSION_DETAILS_REQUEST);
}

export async function getLoginOptions(
Expand Down

0 comments on commit 5307025

Please sign in to comment.