Example usage for org.eclipse.jgit.revwalk FooterKey ACKED_BY

List of usage examples for org.eclipse.jgit.revwalk FooterKey ACKED_BY

Introduction

In this page you can find the example usage for org.eclipse.jgit.revwalk FooterKey ACKED_BY.

Prototype

FooterKey ACKED_BY

To view the source code for org.eclipse.jgit.revwalk FooterKey ACKED_BY.

Click Source Link

Document

Standard Acked-by

Usage

From source file:com.google.gerrit.server.mail.MailUtil.java

License:Apache License

private static boolean isReviewer(final FooterLine candidateFooterLine) {
    return candidateFooterLine.matches(FooterKey.SIGNED_OFF_BY)
            || candidateFooterLine.matches(FooterKey.ACKED_BY)
            || candidateFooterLine.matches(FooterConstants.REVIEWED_BY)
            || candidateFooterLine.matches(FooterConstants.TESTED_BY);
}