Commit a4fa3d8a by Adam Gerber

Merge branch 'lab06c'

Conflicts:
	src/lec06/glab/debugger/IterativeDriver.java
parents d2e663b2 187ccbc0
......@@ -9,14 +9,7 @@ public class AbstractDriver {
public static void main(String[] args) {
MyAbstractDate myAbstractDate = new MyAbstractDate() {
@Override
public String getMayanArmegeddon() {
return "May 3, 2012. Hello from myAbstractDate, my type is: " + this.getClass().getName();
}
};
System.out.println(myAbstractDate.getMayanArmegeddon());
}
}
......
......@@ -10,15 +10,7 @@ public class InterfaceDriver {
public static void main(String[] args) {
Runnable runner = new Runnable() {
@Override
public void run() {
System.out.println("hello from runner, my type is: " + this.getClass().getName());
}
};
Thread thread = new Thread(runner);
thread.start();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment