*** empty log message ***

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@957 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 7605aa3ab1
commit 9962ad0b74
  1. 7
      jode/jode/JodeApplet.java
  2. 3
      jode/jode/bytecode/ClassInfo.java

@ -24,12 +24,7 @@ import java.awt.event.*;
import java.io.*; import java.io.*;
public class JodeApplet extends Applet { public class JodeApplet extends Applet {
JodeWindow jodeWin; JodeWindow jodeWin = new JodeWindow(this);
public JodeApplet() {
jodeWin = new JodeWindow(this);
}
///#ifdef AWT10 ///#ifdef AWT10
/// public boolean action(Event e, Object arg) { /// public boolean action(Event e, Object arg) {

@ -120,7 +120,6 @@ public class ClassInfo extends BinaryInfo {
} }
public static ClassInfo forName(String name) { public static ClassInfo forName(String name) {
// name = name.replace('/', '.');
if (name == null if (name == null
|| name.indexOf(';') != -1 || name.indexOf(';') != -1
|| name.indexOf('[') != -1 || name.indexOf('[') != -1
@ -574,7 +573,7 @@ public class ClassInfo extends BinaryInfo {
if (name.equals("java.lang.Object")) if (name.equals("java.lang.Object"))
superclass = null; superclass = null;
else else
superclass = ClassInfo.forName("java.lang.Object"); superclass = javaLangObject;
interfaces = new ClassInfo[0]; interfaces = new ClassInfo[0];
} }
if ((howMuch & METHODS) != 0) if ((howMuch & METHODS) != 0)

Loading…
Cancel
Save