Remove redundant code in SentinelResourceAspect (#2016)
This commit is contained in:
parent
fca70646ad
commit
dfce6ebba4
|
|
@ -54,8 +54,7 @@ public class SentinelResourceAspect extends AbstractSentinelAspectSupport {
|
|||
Entry entry = null;
|
||||
try {
|
||||
entry = SphU.entry(resourceName, resourceType, entryType, pjp.getArgs());
|
||||
Object result = pjp.proceed();
|
||||
return result;
|
||||
return pjp.proceed();
|
||||
} catch (BlockException ex) {
|
||||
return handleBlockException(pjp, annotation, ex);
|
||||
} catch (Throwable ex) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue