aboutsummaryrefslogtreecommitdiff
path: root/src/content/presenters/FindPresenter.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/presenters/FindPresenter.ts')
-rw-r--r--src/content/presenters/FindPresenter.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/content/presenters/FindPresenter.ts b/src/content/presenters/FindPresenter.ts
index 6dd03f8..d9bc835 100644
--- a/src/content/presenters/FindPresenter.ts
+++ b/src/content/presenters/FindPresenter.ts
@@ -1,4 +1,3 @@
-import ConsoleClient, { ConsoleClientImpl } from '../client/ConsoleClient';
export default interface FindPresenter {
find(keyword: string, backwards: boolean): boolean;
@@ -28,12 +27,6 @@ interface MyWindow extends Window {
declare var window: MyWindow;
export class FindPresenterImpl implements FindPresenter {
- private consoleClient: ConsoleClient;
-
- constructor({ consoleClient = new ConsoleClientImpl() } = {}) {
- this.consoleClient = consoleClient;
- }
-
find(keyword: string, backwards: boolean): boolean {
let caseSensitive = false;
let wrapScan = true;