Let git implement DIFF_RESULT command

This commit is contained in:
Rene Pfeuffer
2019-08-16 15:56:15 +02:00
parent 3ad3da5398
commit aa1452ab85

View File

@@ -60,6 +60,7 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
Command.BROWSE, Command.BROWSE,
Command.CAT, Command.CAT,
Command.DIFF, Command.DIFF,
Command.DIFF_RESULT,
Command.LOG, Command.LOG,
Command.TAGS, Command.TAGS,
Command.BRANCHES, Command.BRANCHES,
@@ -168,6 +169,11 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
return new GitDiffCommand(context, repository); return new GitDiffCommand(context, repository);
} }
@Override
public DiffResultCommand getDiffResultCommand() {
return new GitDiffResultCommand(context, repository);
}
/** /**
* Method description * Method description
* *