From 5cf9bbbe2dd7012cc06034585f8f3e38f7066b3a Mon Sep 17 00:00:00 2001 From: jochen Date: Sat, 13 Mar 1999 00:15:45 +0000 Subject: [PATCH] fix git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@413 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/type/NullType.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jode/jode/type/NullType.java b/jode/jode/type/NullType.java index fc6f62c..dcccf60 100644 --- a/jode/jode/type/NullType.java +++ b/jode/jode/type/NullType.java @@ -46,6 +46,10 @@ public class NullType extends ClassInterfacesType { return o == this; } + public Type getHint() { + return tNull; + } + /** * Intersect this type with another type and return the new type. * @param type the other type.