Skip to content

Commit 83248c8

Browse files
authored
Remove invalid reference
1 parent 699c4ca commit 83248c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/results/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export function initialise(context: vscode.ExtensionContext) {
168168

169169
} else {
170170
const scrollingEnabled = Configuration.get(`scrollingResultSet`);
171-
if (scrollingEnabled && statement.type === `statement` && this.isBasicStatement(statement.content)) {
171+
if (scrollingEnabled && statement.type === `statement` && isBasicStatement(statement.content)) {
172172
// If it's a basic statement, we can let it scroll!
173173
resultSetProvider.setScrolling(statement.content);
174174

0 commit comments

Comments
 (0)