Browse Source

Polish

pull/4623/head
Rob Winch 8 years ago
parent
commit
57d26ffa10
  1. 4
      core/src/main/java/org/springframework/security/access/method/PrePostAdviceReactiveMethodInterceptor.java

4
core/src/main/java/org/springframework/security/access/method/PrePostAdviceReactiveMethodInterceptor.java

@ -112,7 +112,7 @@ public class PrePostAdviceReactiveMethodInterceptor implements MethodInterceptor @@ -112,7 +112,7 @@ public class PrePostAdviceReactiveMethodInterceptor implements MethodInterceptor
);
}
private<T extends Publisher<?>> T proceed(final MethodInvocation invocation) {
private static <T extends Publisher<?>> T proceed(final MethodInvocation invocation) {
try {
return (T) invocation.proceed();
} catch(Throwable throwable) {
@ -131,7 +131,7 @@ public class PrePostAdviceReactiveMethodInterceptor implements MethodInterceptor @@ -131,7 +131,7 @@ public class PrePostAdviceReactiveMethodInterceptor implements MethodInterceptor
return null;
}
private PreInvocationAttribute findPreInvocationAttribute(
private static PreInvocationAttribute findPreInvocationAttribute(
Collection<ConfigAttribute> config) {
for (ConfigAttribute attribute : config) {
if (attribute instanceof PreInvocationAttribute) {

Loading…
Cancel
Save