change pointcut name

This commit is contained in:
nguyenminhtuanfit@gmail.com 2016-11-14 21:14:09 +07:00
parent 19eb8bd90d
commit 0110a3f75e
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public aspect AccountAspect {
}
}
after(int amount, Account balance) : callAtWithDraw(amount, balance) {
after(int amount, Account balance) : callWithDraw(amount, balance) {
logger.info("Balance after withdrawal : {}", balance.balance);
}
}