How is it possible that the following can print "I'm here":
assert title != null;
if(title == null)
System.out.println("I'm here");
Anyone ?If it's relevant, I'm using openjdk and netBeans on Ubuntu 10.10..
assert title != null;
if(title == null)
System.out.println("I'm here");
Anyone ?|
|
|
java -ea MyClassFileThat'll make it work. I tested this with OpenJDK on Ubuntu 10.10.
0 members, 1 guests, 0 anonymous users