Hi,
I'm using JDE, and trying to do:
final int whatever;
try {
whatever = something();
}
catch (Exception ex) {
whatever = -1;
}
but the compiler keeps saying that 'whatever' may have already been assigned and keeps pointing to the:
whatever = -1;
line. Shouldn't it be impossible for that to happen?
Thanks
Start Free Trial