[DO NOT MERGE] Don't throw from PooledLambdaImpl#toString

Bug: 134594642
Test: presubmit
Change-Id: Ia0834a76e7ae9a222ec2698dcd989317bb20f2a0
(cherry picked from commit 7f000e1dd9)
This commit is contained in:
Eugene Susla
2019-06-21 18:23:59 -07:00
parent 0e1eecd080
commit 75632d616d

View File

@@ -637,6 +637,7 @@ final class PooledLambdaImpl<R> extends OmniFunction<Object,
private static String argCountPrefix(int argCount) {
switch (argCount) {
case MASK_ARG_COUNT: return "";
case 0: return "";
case 1: return "";
case 2: return "Bi";
case 3: return "Tri";
@@ -646,7 +647,7 @@ final class PooledLambdaImpl<R> extends OmniFunction<Object,
case 7: return "Hept";
case 8: return "Oct";
case 9: return "Nona";
default: throw new IllegalArgumentException("" + argCount);
default: return "" + argCount + "arg";
}
}