summaryrefslogtreecommitdiffstats
path: root/docs/adk15ProgGuideDB/generics.xml
diff options
context:
space:
mode:
authoraclement <aclement>2005-11-07 12:56:07 +0000
committeraclement <aclement>2005-11-07 12:56:07 +0000
commite0289593b9be768233801ba10226534af617c19b (patch)
treed7b66466231626459def69c64c1008c1f568bea1 /docs/adk15ProgGuideDB/generics.xml
parent0b6d41c5a5a35c567f6ef391d4579c701d65d7be (diff)
downloadaspectj-e0289593b9be768233801ba10226534af617c19b.tar.gz
aspectj-e0289593b9be768233801ba10226534af617c19b.zip
test X - matches the spec in the AJDK (work for 112105)
Diffstat (limited to 'docs/adk15ProgGuideDB/generics.xml')
-rw-r--r--docs/adk15ProgGuideDB/generics.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/adk15ProgGuideDB/generics.xml b/docs/adk15ProgGuideDB/generics.xml
index 429f110ec..4b75584b4 100644
--- a/docs/adk15ProgGuideDB/generics.xml
+++ b/docs/adk15ProgGuideDB/generics.xml
@@ -1122,7 +1122,7 @@
// default implementations.
/** list of children maintained by parent */
- private List<C> ParentHasChildren<C>.children;
+ private List<C> ParentHasChildren<C>.children = new ArrayList<C>();
/** reference to parent maintained by child */
private P ChildHasParent<P>.parent;
@@ -1177,7 +1177,7 @@
* Matches at a removeChild join point for the parent type P and child type C
*/
public pointcut removingChild(Parent p, Child c) :
- execution(* Parent.removeChild(C)) && this(p) && args(c);
+ execution(* Parent.removeChild(Child)) && this(p) && args(c);
}