From 02e4076e3897f70823750f9b4d3ba041fec3ded1 Mon Sep 17 00:00:00 2001 From: Sherlock Ji <60247450+qcsmallblack@users.noreply.github.com> Date: Tue, 22 Sep 2026 02:06:26 +0800 Subject: [PATCH] Correct method signature spacing in MethodInterceptor Fix formatting of MethodInterceptor interface method signature. --- docs/java/basis/proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/java/basis/proxy.md b/docs/java/basis/proxy.md index 869fcbb6204..589417703f3 100644 --- a/docs/java/basis/proxy.md +++ b/docs/java/basis/proxy.md @@ -277,7 +277,7 @@ after method send public interface MethodInterceptor extends Callback{ // 拦截被代理类中的方法 - public Object intercept(Object obj, java.lang.reflect.Method method, Object[] args,MethodProxy proxy) throws Throwable; + public Object intercept(Object obj, java.lang.reflect.Method method, Object[] args, MethodProxy proxy) throws Throwable; } ```