From: aclement Date: Wed, 20 Aug 2008 20:48:25 +0000 (+0000) Subject: remove unnecessary files X-Git-Tag: V162DEV_M1~108 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=95bf99ab559ce926df99e84f811934f98eaf6b49;p=aspectj.git remove unnecessary files --- diff --git a/tests/bugs162/pr145391/B.class b/tests/bugs162/pr145391/B.class deleted file mode 100644 index e91f70136..000000000 Binary files a/tests/bugs162/pr145391/B.class and /dev/null differ diff --git a/tests/bugs162/pr145391/x/GenericType2.java b/tests/bugs162/pr145391/x/GenericType2.java deleted file mode 100644 index 8d5fb565c..000000000 --- a/tests/bugs162/pr145391/x/GenericType2.java +++ /dev/null @@ -1,25 +0,0 @@ -interface Bar {} - -class B implements Bar {} - -public class GenericType2 { - - public GenericType2(V value) {} - - protected void getValue(V aV) { - } - public void m() { - getValue(new B()); -} -} - -aspect SomeAspect { - before(GenericType2 t): call(* GenericType2.foo()) && target(t) { - // Indirect call to generic method produces a NoSuchMethodError - t.callGenericMethod(); - } - - private void GenericType2.callGenericMethod() { -// getValue(new Integer(45)); - } -}