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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user