Files
spring-loaded/testdata-aspectj/src/main/java/data/AspectReceiver.java
Andy Clement e400e2da63 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)
2014-02-20 09:13:14 -08:00

16 lines
196 B
Java

package data;
public class AspectReceiver {
public static void main2() {
main(null);
}
public static void main(String[] args) {
new AspectReceiver().foo();
}
public void foo() {
}
}