Skip to content

Commit

Permalink
remove empty context provider
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshedivy committed Dec 20, 2024
1 parent 8441382 commit 54fe43b
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/aiProviders/continue/listTablesContextProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,6 @@ class ListDb2iTables implements IContextProvider {
}
}

class emptyContextProvider implements IContextProvider {
get description(): ContextProviderDescription {
return {
title: "",
displayTitle: "",
description: "",
type: "normal"
};
}
async getContextItems(query: string, extras: ContextProviderExtras): Promise<ContextItem[]> {
return [];
}
async loadSubmenuItems(args: LoadSubmenuItemsArgs): Promise<ContextSubmenuItem[]> {
return [];
}

}

export async function registerDb2iTablesProvider() {
const provider = new ListDb2iTables();
const continueID = `Continue.continue`;
Expand Down

0 comments on commit 54fe43b

Please sign in to comment.