summaryrefslogtreecommitdiffstats
path: root/docs/progGuideDB
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-08-06 09:04:23 +0000
committeracolyer <acolyer>2004-08-06 09:04:23 +0000
commit48316ca2c9a327e5003efa311cea143015f04173 (patch)
tree462fde37aebcaf899a59e0707acdbbafe72495dc /docs/progGuideDB
parent3c70391775bc7aafb0fb1e400cb207054c7a3afd (diff)
downloadaspectj-48316ca2c9a327e5003efa311cea143015f04173.tar.gz
aspectj-48316ca2c9a327e5003efa311cea143015f04173.zip
fix for bug 53028
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r--docs/progGuideDB/semantics.xml6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/progGuideDB/semantics.xml b/docs/progGuideDB/semantics.xml
index 3c02329f0..b88e86c7e 100644
--- a/docs/progGuideDB/semantics.xml
+++ b/docs/progGuideDB/semantics.xml
@@ -1500,11 +1500,7 @@
<para>
Around advice runs in place of the join point it operates over, rather
than before or after it. Because around is allowed to return a value, it
- must be declared with a return type, like a method. A piece of around
- advice may be declared <literal>void</literal>, in which case it is not
- allowed to return a value, and instead whatever value the join point
- returned will be returned by the around advice (unless the around advice
- throws an exception of its own).
+ must be declared with a return type, like a method.
</para>
<para>