Hi Frank,
Probably best to confirm this on lambda-dev but I suspect that default
method support introduced a bug in b63 that was fixed by b65.
David
On 30/01/2013 12:06 PM, Frank Ding wrote:
Hi guys,
I noticed there is a change in Java 8 between b63 and b65. The change
can be illustrated by
Hi guys,
I noticed there is a change in Java 8 between b63 and b65. The change
can be illustrated by compiling following Issue class.
public class Issue {
interface Handler {
public void handle();
}
interface Listener {
public void listen();
}
Handler handlerImpl = new Handler() {
public void