Git - remove deprecated extension API (#209010)

This commit is contained in:
Ladislau Szomoru
2024-03-28 13:25:40 +01:00
committed by GitHub
parent 1d1c28eed1
commit a7f384badb
3 changed files with 0 additions and 21 deletions

View File

@@ -160,10 +160,6 @@ export class ApiRepository implements Repository {
return this.repository.diffBetween(ref1, ref2, path);
}
getDiff(): Promise<string[]> {
return this.repository.getDiff();
}
hashObject(data: string): Promise<string> {
return this.repository.hashObject(data);
}

View File

@@ -226,8 +226,6 @@ export interface Repository {
diffBetween(ref1: string, ref2: string): Promise<Change[]>;
diffBetween(ref1: string, ref2: string, path: string): Promise<string>;
getDiff(): Promise<string[]>;
hashObject(data: string): Promise<string>;
createBranch(name: string, checkout: boolean, ref?: string): Promise<void>;