Skip to content

Commit be403c2

Browse files
committed
Remove smaller assignment
Signed-off-by: worksofliam <[email protected]>
1 parent c15151b commit be403c2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/views/results/resultSetPanelProvider.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ export class ResultSetPanelProvider implements WebviewViewProvider {
6868
// We will need to revisit this if we ever allow multiple result tabs like ACS does
6969
// Query.cleanup();
7070

71-
let query = await JobManager.getPagingStatement(message.query, { isClCommand: message.isCL, autoClose: true, isTerseResults: true });
72-
this.currentQuery = query;
71+
this.currentQuery = await JobManager.getPagingStatement(message.query, { isClCommand: message.isCL, autoClose: true, isTerseResults: true });
7372
}
7473

7574
let queryResults = this.currentQuery.getState() == QueryState.RUN_MORE_DATA_AVAILABLE ? await this.currentQuery.fetchMore() : await this.currentQuery.run();

0 commit comments

Comments
 (0)