Itβs easy here, of course, someone knows this from the head ...
Question
When you write tip around in AspectJ, do you need to call next? Suppose you wanted to make a way to do something FULLY different? Can you leave "continue" or output an error (forcing you to cause a continuation, but ignoring the results)?
Example
can you do something like this:
String around() : generateCommand() {
or you need to do it like this:
String around() : generateCommand() { String commandInvolvingInvalidDatabaseCall = proceed();
gMale source share