summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorwisberg <wisberg>2004-01-09 17:33:43 +0000
committerwisberg <wisberg>2004-01-09 17:33:43 +0000
commitfa41ac6ec439074fa75a84eeae2815dd20d71b78 (patch)
tree92a9cb6a0b79d383d8154d8397d009a138b5ed09 /docs
parent37e42fc43a6030e2b10dbf9e766c67e6434a7396 (diff)
downloadaspectj-fa41ac6ec439074fa75a84eeae2815dd20d71b78.tar.gz
aspectj-fa41ac6ec439074fa75a84eeae2815dd20d71b78.zip
respecting Xlint:unmatchedSuperTypeInCall, if only to preserve that compiling the examples don't produce errors or warnings
Diffstat (limited to 'docs')
-rw-r--r--docs/dist/doc/examples/spacewar/Debug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dist/doc/examples/spacewar/Debug.java b/docs/dist/doc/examples/spacewar/Debug.java
index a5d991661..a3afb1dda 100644
--- a/docs/dist/doc/examples/spacewar/Debug.java
+++ b/docs/dist/doc/examples/spacewar/Debug.java
@@ -166,7 +166,7 @@ aspect Debug {
}
after(Ship ship, SpaceObject obj) returning :
- call(void Ship.handleCollision(SpaceObject)) && target(ship) && args(obj) {
+ call(void handleCollision(SpaceObject)) && target(ship) && args(obj) {
if (traceFireCollideDamage.getState())
infoWin.println(ship + " collides with " + obj);
}