aboutsummaryrefslogtreecommitdiffstats
path: root/docs/teaching/exercises/answers/Answer4c.java
diff options
context:
space:
mode:
Diffstat (limited to 'docs/teaching/exercises/answers/Answer4c.java')
-rw-r--r--docs/teaching/exercises/answers/Answer4c.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/teaching/exercises/answers/Answer4c.java b/docs/teaching/exercises/answers/Answer4c.java
index 54107cf8f..35f4b90af 100644
--- a/docs/teaching/exercises/answers/Answer4c.java
+++ b/docs/teaching/exercises/answers/Answer4c.java
@@ -1,13 +1,13 @@
/* *******************************************************************
* Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Common Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * PARC initial implementation
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * PARC initial implementation
* ******************************************************************/
package answers;
@@ -21,13 +21,13 @@ aspect Answer4c {
Rectangle around(Group g):
execution(Rectangle Group.getBounds()) && this(g) {
- if (g.cache == null) {
- g.cache = proceed(g);
- }
- return g.cache;
+ if (g.cache == null) {
+ g.cache = proceed(g);
+ }
+ return g.cache;
}
before(Group g): call(void move(int, int)) && target(g) {
- g.cache = null;
+ g.cache = null;
}
}