115116117118119120121122123124125
if (currentRef == null) continue; RevCommit base = walk.parseCommit(repo.resolve(branchName)); if (!walk.isMergedInto(base, tip)) { throw new NotMergedException(); } } } setCallable(false); for (String branchName : branchNames) {
117118119120121122123124125126127