package i0; import java.lang.reflect.Method; import java.util.Collections; import java.util.List; /* compiled from: Invocation */ public final class k { public final Method a; public final List b; public k(Method method, List list) { this.a = method; this.b = Collections.unmodifiableList(list); } public String toString() { return String.format("%s.%s() %s", this.a.getDeclaringClass().getName(), this.a.getName(), this.b); } }