Skip to content

Commit 7073308

Browse files
committed
Drop unused symbols
- been meaing to remove these for a while
1 parent 9912e2d commit 7073308

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

app/src/lib/vbranches/types.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,6 @@ export function isRemoteCommit(obj: any): obj is RemoteCommit {
256256

257257
export type AnyCommit = Commit | RemoteCommit;
258258

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-
264259
export function commitCompare(left: AnyCommit, right: AnyCommit): boolean {
265260
if (left.id === right.id) return true;
266261
if (left.changeId && right.changeId && left.changeId === right.changeId) return true;

0 commit comments

Comments
 (0)