fix: remove unused constructor

This commit is contained in:
Eli Bosley
2025-01-31 15:28:43 -05:00
parent 1d5c2c8338
commit ce92cb06b7

View File

@@ -19,10 +19,6 @@ class TestFileModification extends FileModification {
id = 'test'; id = 'test';
public readonly filePath: string = FIXTURE_PATH; public readonly filePath: string = FIXTURE_PATH;
constructor(logger: Logger) {
super(logger);
}
protected async generatePatch(): Promise<string> { protected async generatePatch(): Promise<string> {
return createPatch('text-patch-file.txt', ORIGINAL_CONTENT, 'modified'); return createPatch('text-patch-file.txt', ORIGINAL_CONTENT, 'modified');
} }