2 Commits

Author SHA1 Message Date
runphp
86acdf415a Pre Merge pull request !268 from runphp/N/A 2025-03-07 04:56:58 +00:00
runphp
7c18d36389 perf: 去除多余的代码
Signed-off-by: runphp <runphp@qq.com>
2022-10-22 08:36:33 +00:00

View File

@@ -56,16 +56,8 @@ public class PreAuthorizeAspect
// 注解鉴权
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
checkMethodAnnotation(signature.getMethod());
try
{
// 执行原有逻辑
Object obj = joinPoint.proceed();
return obj;
}
catch (Throwable e)
{
throw e;
}
// 执行原有逻辑
return joinPoint.proceed();
}
/**