git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@391 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent c6600bb1d6
commit b2c8d6b995
  1. 4
      jode/jode/type/Type.java

@ -321,10 +321,10 @@ public class Type {
*/
public Type intersection(Type type) {
if (this == tError || type == tError)
return type;
return tError;
if (this == tUnknown)
return type;
if (this == type)
if (type == tUnknown || this == type)
return this;
Decompiler.err.println("intersecting "+ this +" and "+ type
+ " to <error>");

Loading…
Cancel
Save