修复 sa-token-redisx 模块代码警告

This commit is contained in:
click33 2023-05-16 16:38:28 +08:00
parent 530ff0e803
commit 7a057cf8ed

View File

@ -89,14 +89,9 @@ public class SaCheckAspect {
// 注解鉴权
SaStrategy.me.checkMethodAnnotation.accept(method);
}
try {
// 执行原有逻辑
Object obj = joinPoint.proceed();
return obj;
} catch (Throwable e) {
throw e;
}
// 执行原有逻辑
return joinPoint.proceed();
}
}