aboutsummaryrefslogtreecommitdiffstats
path: root/docs/teaching/exercises/answers/Answer4b.java
diff options
context:
space:
mode:
authorehilsdal <ehilsdal>2004-11-10 06:03:33 +0000
committerehilsdal <ehilsdal>2004-11-10 06:03:33 +0000
commit90da53cec2fb59df3743822ae79a5b34655a106a (patch)
tree0b50d12403b79b7f40f528d7e2b81d6dc710f9ef /docs/teaching/exercises/answers/Answer4b.java
parentc9363fd12ac1d276af0bb63b87e893c7cef50ecf (diff)
downloadaspectj-90da53cec2fb59df3743822ae79a5b34655a106a.tar.gz
aspectj-90da53cec2fb59df3743822ae79a5b34655a106a.zip
revised with info from OOPSLA 2004:
renaming support.Log.log to support.Log.write renaming test.Test to test.CoreTest (r)ing aspectj clearing up a few random things
Diffstat (limited to 'docs/teaching/exercises/answers/Answer4b.java')
-rw-r--r--docs/teaching/exercises/answers/Answer4b.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/teaching/exercises/answers/Answer4b.java b/docs/teaching/exercises/answers/Answer4b.java
index 33649c4e1..657312083 100644
--- a/docs/teaching/exercises/answers/Answer4b.java
+++ b/docs/teaching/exercises/answers/Answer4b.java
@@ -20,8 +20,8 @@ aspect Answer4b {
private Rectangle Group.cache = null;
Rectangle around(Group g):
- execution(Rectangle Group.getBounds()) && this(g)
- {
+ execution(Rectangle Group.getBounds())
+ && this(g) {
if (g.cache == null) {
g.cache = proceed(g);
}