Make compile after ClassUtils method changed

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137186 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2002-12-15 19:34:34 +00:00
parent ee92780447
commit ecc344fabe
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@
* reflection. * reflection.
* *
* @author <a href="mailto:scolebourne@apache.org">Stephen Colebourne</a> * @author <a href="mailto:scolebourne@apache.org">Stephen Colebourne</a>
* @version $Id: ReflectionUtils.java,v 1.4 2002/11/20 22:31:40 rdonkin Exp $ * @version $Id: ReflectionUtils.java,v 1.5 2002/12/15 19:34:34 scolebourne Exp $
*/ */
public class ReflectionUtils { public class ReflectionUtils {
@ -391,7 +391,7 @@ public static String getThrowableText(Throwable th, String desc, String classNam
message = null; message = null;
} }
StringBuffer buf = new StringBuffer(); StringBuffer buf = new StringBuffer();
buf.append(ClassUtils.getShortClassName(th)); buf.append(ClassUtils.getShortClassName(th, ""));
buf.append(" while "); buf.append(" while ");
buf.append(desc); buf.append(desc);
buf.append(" on Class '"); buf.append(" on Class '");