Skip to content

Commit ab64b0f

Browse files
committed
SQ suggestions
1 parent 9632cf6 commit ab64b0f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/connection/connection_v2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AccountNotFoundError, ApiError } from "../common/errors";
22
import { ACCOUNT_SYSTEM_ENGINE, QUERY_URL } from "../common/api";
33

4-
import { Connection as BaseConnection, defaultResponseSettings } from "./base";
4+
import { Connection as BaseConnection } from "./base";
55
import { Cache, inMemoryCache, noneCache } from "../common/tokenCache";
66
import { ExecuteQueryOptions } from "../types";
77
import { AsyncStatement } from "../statement/async";

src/statement/async.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import { Meta } from "../meta";
99

1010
export class AsyncStatement {
1111
private readonly asyncToken: string;
12-
private context: Context;
13-
private query: string;
14-
private executeQueryOptions: ExecuteQueryOptions;
15-
private text: string;
12+
private readonly context: Context;
13+
private readonly query: string;
14+
private readonly executeQueryOptions: ExecuteQueryOptions;
15+
private readonly text: string;
1616

1717
constructor(
1818
context: Context,

0 commit comments

Comments
 (0)