11 lines
260 B
Java
11 lines
260 B
Java
package org.aspectj.lang;
|
|
|
|
import org.aspectj.runtime.internal.AroundClosure;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface ProceedingJoinPoint extends JoinPoint {
|
|
Object a(Object[] objArr) throws Throwable;
|
|
|
|
void a(AroundClosure aroundClosure);
|
|
}
|