*** empty log message ***

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@559 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 0492729f9f
commit 3db43bc59a
  1. 7
      jode/jode/flow/VariableStack.java
  2. 4
      jode/jode/type/Type.java

@ -34,11 +34,14 @@ import jode.expr.Operator;
* @see FlowBlock.removePush
*/
public class VariableStack {
public final static VariableStack EMPTY =
new VariableStack(new LocalInfo[0]);
public final static VariableStack EMPTY = new VariableStack();
final LocalInfo[] stackMap;
private VariableStack() {
stackMap = new LocalInfo[0];
}
private VariableStack(LocalInfo[] stack) {
stackMap = stack;
}

@ -305,8 +305,8 @@ public class Type {
/**
* Create a new type with the given type code.
*/
protected Type(int typecode) {
this.typecode = typecode;
protected Type(int tc) {
typecode = tc;
}
public Type getSubType() {

Loading…
Cancel
Save