Name: gm110360 Date: 10/01/2001
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
In the following:
static boolean verboseDebug = true;
...
if (verboseDebug)
verboseDebug = commandLineDebugArg;
the assignment should be made unreachable when the field verboseDebug is made
final and false. However the compiler still reports the assignment as an error.
(Review ID: 132849)
======================================================================