We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9912e2d commit 7073308Copy full SHA for 7073308
app/src/lib/vbranches/types.ts
@@ -256,11 +256,6 @@ export function isRemoteCommit(obj: any): obj is RemoteCommit {
256
257
export type AnyCommit = Commit | RemoteCommit;
258
259
-export const LOCAL_COMMITS = Symbol('LocalCommtis');
260
-export const REMOTE_COMMITS = Symbol('RemoteCommits');
261
-export const INTEGRATED_COMMITS = Symbol('IntegratedCommits');
262
-export const UNKNOWN_COMMITS = Symbol('UnknownCommits');
263
-
264
export function commitCompare(left: AnyCommit, right: AnyCommit): boolean {
265
if (left.id === right.id) return true;
266
if (left.changeId && right.changeId && left.changeId === right.changeId) return true;
0 commit comments