diff options
author | wisberg <wisberg> | 2004-01-09 17:33:43 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2004-01-09 17:33:43 +0000 |
commit | fa41ac6ec439074fa75a84eeae2815dd20d71b78 (patch) | |
tree | 92a9cb6a0b79d383d8154d8397d009a138b5ed09 /docs | |
parent | 37e42fc43a6030e2b10dbf9e766c67e6434a7396 (diff) | |
download | aspectj-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.java | 2 |
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); } |