Remove inconsistent spaces

(cherry picked from commit fb898e1)
This commit is contained in:
Johnny Lim
2018-05-05 07:19:41 +02:00
committed by Juergen Hoeller
parent a39938d251
commit a0d37ac29e
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();
}