From 95dc01b1535e1667cd91f947d761051f869bc92c Mon Sep 17 00:00:00 2001 From: jochen Date: Sat, 26 Jun 1999 16:13:38 +0000 Subject: [PATCH] getCanonic added git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@900 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/type/ArrayType.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jode/jode/type/ArrayType.java b/jode/jode/type/ArrayType.java index 42a51cc..d30d1f7 100644 --- a/jode/jode/type/ArrayType.java +++ b/jode/jode/type/ArrayType.java @@ -59,6 +59,10 @@ public class ArrayType extends ReferenceType { return tArray(elementType.getHint()); } + public Type getCanonic() { + return tArray(elementType.getCanonic()); + } + /** * Create the type corresponding to the range from bottomType to this. * @param bottomType the start point of the range