Skip to content

Commit 457e86e

Browse files
committed
Removes dead code
1 parent 719ff9e commit 457e86e

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

src/env/node/git/localGitProvider.ts

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -3733,43 +3733,6 @@ export class LocalGitProvider implements GitProvider, Disposable {
37333733
...args,
37343734
);
37353735

3736-
// const parser = GitLogParser.defaultParser;
3737-
3738-
// const data = await this.git.log2(repoPath, options?.ref, {
3739-
// ...options,
3740-
// // args: parser.arguments,
3741-
// limit: limit,
3742-
// merges: options?.merges == null ? true : options.merges,
3743-
// ordering: options?.ordering ?? configuration.get('advanced.commitOrdering'),
3744-
// similarityThreshold: configuration.get('advanced.similarityThreshold'),
3745-
// });
3746-
3747-
// const commits = [];
3748-
// const entries = parser.parse(data);
3749-
// for (const entry of entries) {
3750-
// commits.push(
3751-
// new GitCommit2(
3752-
// repoPath,
3753-
// entry.sha,
3754-
// new GitCommitIdentity(
3755-
// entry.author,
3756-
// entry.authorEmail,
3757-
// new Date((entry.authorDate as any) * 1000),
3758-
// ),
3759-
// new GitCommitIdentity(
3760-
// entry.committer,
3761-
// entry.committerEmail,
3762-
// new Date((entry.committerDate as any) * 1000),
3763-
// ),
3764-
// entry.message.split('\n', 1)[0],
3765-
// entry.parents.split(' '),
3766-
// entry.message,
3767-
// entry.files.map(f => new GitFileChange(repoPath, f.path, f.status as any, f.originalPath)),
3768-
// [],
3769-
// ),
3770-
// );
3771-
// }
3772-
37733736
const log = parseGitLog(
37743737
this.container,
37753738
data,

0 commit comments

Comments
 (0)