diff options
Diffstat (limited to 'tests/java5/generics/genericaspects/BlobContainment.aj')
-rw-r--r-- | tests/java5/generics/genericaspects/BlobContainment.aj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/java5/generics/genericaspects/BlobContainment.aj b/tests/java5/generics/genericaspects/BlobContainment.aj index 923e12224..9ae21df0b 100644 --- a/tests/java5/generics/genericaspects/BlobContainment.aj +++ b/tests/java5/generics/genericaspects/BlobContainment.aj @@ -1,6 +1,5 @@ public aspect BlobContainment extends ParentChildRelationship<Blob,Blob> { - public static void main(String []argv) { Blob a = new Blob(); Blob b = new Blob(); @@ -17,12 +16,14 @@ public aspect BlobContainment extends ParentChildRelationship<Blob,Blob> { // now query the layout +/* if (!e.getParent().equals(b)) throw new RuntimeException("why is E not parent of B? "+e.getParent()); if (!d.getParent().equals(a)) throw new RuntimeException("why is A not parent of D? "+d.getParent()); if (a.getChildren().size()!=3) throw new RuntimeException("A should have 3 children, not:"+a.getChildren().size()); +*/ } } |