Skip to content

Commit

Permalink
fix(source/index): set helper method as private
Browse files Browse the repository at this point in the history
  • Loading branch information
euberdeveloper committed Jan 6, 2021
1 parent 68cbbf1 commit c8ea17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class MongoScanner {
return databases;
}

public async _listCollections(db: string, options: ScanOptions, inheritDb: Database): Promise<string[]> {
private async _listCollections(db: string, options: ScanOptions, inheritDb: Database): Promise<string[]> {
let collections: string[];
if (options.useCache) {
collections = this.cache.listCollections(db);
Expand Down

2 comments on commit c8ea17a

@vercel
Copy link

@vercel vercel bot commented on c8ea17a Jan 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c8ea17a Jan 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.