Example usage for org.eclipse.jgit.api CherryPickResult getFailingPaths

List of usage examples for org.eclipse.jgit.api CherryPickResult getFailingPaths

Introduction

In this page you can find the example usage for org.eclipse.jgit.api CherryPickResult getFailingPaths.

Prototype

public Map<String, MergeFailureReason> getFailingPaths() 

Source Link

Document

Get the list of paths causing this cherry-pick to fail

Usage

From source file:org.eclipse.egit.ui.internal.commit.command.CherryPickHandler.java

License:Open Source License

private void showFailure(CherryPickResult result) {
    IStatus details = getErrorList(result.getFailingPaths());
    Activator.showErrorStatus(UIText.CherryPickHandler_CherryPickFailedMessage, details);
}