package org.aspectj.runtime.reflect; import org.aspectj.lang.reflect.CodeSignature; /* loaded from: classes2.dex */ abstract class CodeSignatureImpl extends MemberSignatureImpl implements CodeSignature { Class[] i; Class[] j; CodeSignatureImpl(int i, String str, Class cls, Class[] clsArr, String[] strArr, Class[] clsArr2) { super(i, str, cls); this.i = clsArr; this.j = clsArr2; } public Class[] e() { if (this.j == null) { this.j = d(5); } return this.j; } public Class[] f() { if (this.i == null) { this.i = d(3); } return this.i; } }