summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2019-11-22 19:37:50 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-11-22 19:37:50 +0000
commitc8609b5872b6eaae6f31eddfb8857da3a00297c8 (patch)
tree09c4a995fa821e7276334e21c63ae28e4306c86a
parentf4eb2ca0d76350ce08c5c1da2b39ba51f41bfa92 (diff)
parent08890b900aa6397474288685f092f79ed300a4f5 (diff)
Merge "Fixed arg count with Quad/Quint pooled predicates"
-rwxr-xr-xcore/java/com/android/internal/util/function/pooled/PooledLambda.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/com/android/internal/util/function/pooled/PooledLambda.java b/core/java/com/android/internal/util/function/pooled/PooledLambda.java
index d32ff060a8d7..a60cc0fb101f 100755
--- a/core/java/com/android/internal/util/function/pooled/PooledLambda.java
+++ b/core/java/com/android/internal/util/function/pooled/PooledLambda.java
@@ -383,7 +383,7 @@ public interface PooledLambda {
QuadPredicate<? super A, ? super B, ? super C, ? super D> function,
ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4) {
return acquire(PooledLambdaImpl.sPool,
- function, 3, 1, ReturnType.BOOLEAN, arg1, arg2, arg3, arg4, null, null, null, null,
+ function, 4, 1, ReturnType.BOOLEAN, arg1, arg2, arg3, arg4, null, null, null, null,
null, null, null);
}
@@ -404,7 +404,7 @@ public interface PooledLambda {
QuintPredicate<? super A, ? super B, ? super C, ? super D, ? super E> function,
ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4, E arg5) {
return acquire(PooledLambdaImpl.sPool,
- function, 3, 1, ReturnType.BOOLEAN, arg1, arg2, arg3, arg4, arg5, null, null, null,
+ function, 5, 1, ReturnType.BOOLEAN, arg1, arg2, arg3, arg4, arg5, null, null, null,
null, null, null);
}