Remove inconsistent spaces

This commit is contained in:
Johnny Lim
2018-05-05 14:19:41 +09:00
committed by Juergen Hoeller
parent 8f21cb1a7c
commit fb898e1727
14 changed files with 40 additions and 40 deletions

View File

@@ -48,7 +48,7 @@ public class MethodBeforeAdviceInterceptor implements MethodInterceptor, Seriali
@Override
public Object invoke(MethodInvocation mi) throws Throwable {
this.advice.before(mi.getMethod(), mi.getArguments(), mi.getThis() );
this.advice.before(mi.getMethod(), mi.getArguments(), mi.getThis());
return mi.proceed();
}