Merge branch 'stable-2.6'
* stable-2.6: Enable expanding skipped lines even if 'Syntax Coloring' is off Fix: `gerrit review` with --message does not work with no labels Reword 'Working ...' message changes in 2.6 release notes TrivialRebase: Support custom labels MergeUtil: Remove legacy label ID TrivialRebase: Call gerrit review instead of approve
This commit is contained in:
@@ -315,11 +315,11 @@ public class MergeUtil {
|
||||
}
|
||||
|
||||
private static boolean isCodeReview(LabelId id) {
|
||||
return "CRVW".equals(id.get()) || "Code-Review".equalsIgnoreCase(id.get());
|
||||
return "Code-Review".equalsIgnoreCase(id.get());
|
||||
}
|
||||
|
||||
private static boolean isVerified(LabelId id) {
|
||||
return "VRIF".equals(id.get()) || "Verified".equalsIgnoreCase(id.get());
|
||||
return "Verified".equalsIgnoreCase(id.get());
|
||||
}
|
||||
|
||||
public List<PatchSetApproval> getApprovalsForCommit(final CodeReviewCommit n) {
|
||||
|
Reference in New Issue
Block a user