List of usage examples for org.eclipse.jgit.revwalk FooterKey ACKED_BY
FooterKey ACKED_BY
To view the source code for org.eclipse.jgit.revwalk FooterKey ACKED_BY.
Click Source Link
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); }