Ignore,
I just found out. Its JVM 1.1 , so set target to 1.1
Setting it to 1.1 caused String.equalsIgnoreCase() to fail.
I changed it to String.equals() and that compiled fine for 1.1
> Hi
>
[quoted text clipped - 7 lines]
> cheers
> jk
Oliver Wong - 15 Dec 2006 15:45 GMT
> I just found out. Its JVM 1.1 , so set target to 1.1
>
> Setting it to 1.1 caused String.equalsIgnoreCase() to fail.
>
> I changed it to String.equals() and that compiled fine for 1.1
Yes, but I hope you realize the two methods have different semantics,
and you've taken that into account, right? ;)
- Oliver