Issue226904

classification
Title: Can't reference queue... in WeakInternalTables.java
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alserkli, bckfnn, pedronis
Priority: normal Keywords:

Created on 2000-12-27.14:31:49 by alserkli, last changed 2000-12-27.21:07:02 by bckfnn.

Messages
msg232 (view) Author: Alexander Klimov (alserkli) Date: 2000-12-27.14:31:49
I use CVS version and javac from jdk1.2.2. Using ant I
tried to compile sources, and got following:
    [javac] /export/home/ask/build/jython/org/python/core/SoftIInternalTables.java:15: Can't reference queue before the superclass constructor has been called.
    [javac]             super(obj,queue);
    [javac]                       ^
    [javac] /export/home/ask/build/jython/org/python/core/WeakInternalTables.java:15: Can't reference queue before the superclass constructor has been called.
    [javac]             super(obj,queue);
msg233 (view) Author: Samuele Pedroni (pedronis) Date: 2000-12-27.16:30:04
Clearly code compiles with jdk 1.3 javac.
That's a jdk1.2.2 javac bug.

A workaround is needed to reenable compilation
under jdk1.2.2.
msg234 (view) Author: Finn Bock (bckfnn) Date: 2000-12-27.21:07:02
Fixed in:
WeakInternalTables.java 2.3;
SoftIInternalTables.java 2.2;
History
Date User Action Args
2000-12-27 14:31:49alserklicreate