diff --git a/jode/jode/type/Type.java b/jode/jode/type/Type.java index edef4e3..56097e4 100644 --- a/jode/jode/type/Type.java +++ b/jode/jode/type/Type.java @@ -23,7 +23,7 @@ import java.util.Hashtable; /** * This is my type class. It differs from java.lang.class, in * that it maintains a type range. This type range may be implicit or - * explicit.

+ * explicit.
* * * Think of this global type hierarchie: @@ -33,18 +33,18 @@ import java.util.Hashtable; * / | \ * / | \ * tObject boolean int - * / \ | - * / tArray short - * other | - * classes byte + * / \ / \ + * / tArray short char + * other \ / + * classes byte * * - * int implements the "interface" tBoolByte. boolean and byte - * implement the "interface" tBoolByte which extends tBoolInt. + * int implements the "interface" tBoolInt. boolean and byte + * implement the "interface" tBoolByte which extends tBoolInt.
* * The type tBoolInt is , the type tBoolByte is * (hard coded in getTop). The - * type tUInt is . + * type tUInt is .
* * Note that tUnknown is no valid type, so we can replace * with