Merge branch 'stable-3.1'

* stable-3.1:
  LazyPostReceiveHookChain: Don't call ReceivePack.getPackSize for delete
  Move repository description to the last column.
  Jenkinsfile: Always build java sources if WORKSPACE file changed

Change-Id: Ifa56bbddba70a5358d9d04c35ab5a26ef3af2130
This commit is contained in:
David Pursehouse
2019-11-13 14:09:39 -08:00
2 changed files with 7 additions and 8 deletions

View File

@@ -79,13 +79,9 @@ public class LazyPostReceiveHookChain implements PostReceiveHook {
}
public static boolean affectsSize(ReceivePack rp, Collection<ReceiveCommand> commands) {
if (rp.getPackSize() > 0L) {
for (ReceiveCommand cmd : commands) {
if (cmd.getType() != ReceiveCommand.Type.DELETE) {
return true;
}
}
if (commands.stream().allMatch(c -> c.getType() == ReceiveCommand.Type.DELETE)) {
return false;
}
return false;
return rp.getPackSize() > 0L;
}
}