Working Java8 build!
- Split the AspectJ testcode out of the general testdata project. - Adjusted tests to handle that JDT produces different code to AspectJ. - Modified some tests to work better with javac compiled testdata (which is what happens when building on the command line or build machine)
This commit is contained in:
15
testdata-aspectj/src/main/java/data/AspectReceiver.java
Normal file
15
testdata-aspectj/src/main/java/data/AspectReceiver.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package data;
|
||||
|
||||
public class AspectReceiver {
|
||||
|
||||
public static void main2() {
|
||||
main(null);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new AspectReceiver().foo();
|
||||
}
|
||||
|
||||
public void foo() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user