JDK-4450558 : javap prints "null" for the method name in code compiled with -target 1.2
  • Type: Bug
  • Component: tools
  • Sub-Component: javap
  • Affected Version: 1.4.0,1.4.1
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: linux,solaris_7
  • CPU: generic,x86
  • Submitted: 2001-04-25
  • Updated: 2002-11-20
  • Resolved: 2002-11-20
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
1.4.2 mantisFixed
Related Reports
Duplicate :  
Description
frog$ cat -n T.java
     1	class B {
     2	    void f() {}
     3	}
     4	
     5	class T extends B {
     6	    void g() {
     7		f();
     8	    }
     9	}
frog$ /java/jdk/1.4/re/promoted/latest/binaries/solsparc/bin/javac T.java
frog$ /java/jdk/1.4/re/promoted/latest/binaries/solsparc/bin/javap -c T
Compiled from T.java
class T extends B {
    T();
    void g();
}

Method T()
   0 aload_0
   1 invokespecial #1 <Method B()>
   4 return

Method void g()
   0 aload_0
   1 invokevirtual #2 <Method null>
   4 return
frog$ 

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: mantis FIXED IN: mantis INTEGRATED IN: mantis
14-06-2004

EVALUATION This is fixed as a side effect of 4633400. ###@###.### 2002-11-19
19-11-2002