change pointcut name
This commit is contained in:
parent
19eb8bd90d
commit
0110a3f75e
|
@ -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);
|
logger.info("Balance after withdrawal : {}", balance.balance);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue