org.aspectj/tests/bugs/protectedvf/main/Driver.java

19 lines
291 B
Java
Raw Normal View History

2004-02-13 02:21:03 +01:00
package main;
public class Driver{
public static void main(String[] args) {
Driver d = new Driver();
d.doStuff();
d.doOtherStuff();
}
private void doOtherStuff() {
System.out.println("doing other stuff");
}
private void doStuff() {
System.out.println("doing stuff");
}
}