Kaynağa Gözat

minor fixes


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@182 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 19 yıl önce
ebeveyn
işleme
1ae8f41102

+ 11
- 0
src/main/javassist/CannotCompileException.java Dosyayı Görüntüle

@@ -106,4 +106,15 @@ public class CannotCompileException extends Exception {
cause.printStackTrace(w);
}
}

/**
* Prints this exception and its backtrace.
*/
public void printStackTrace(java.io.PrintStream w) {
super.printStackTrace(w);
if (cause != null) {
w.println("Caused by:");
cause.printStackTrace(w);
}
}
}

+ 3
- 0
src/main/javassist/bytecode/annotation/Annotation.java Dosyayı Görüntüle

@@ -34,6 +34,9 @@ import java.util.Iterator;
*
* @see javassist.bytecode.AnnotationsAttribute#getAnnotations()
* @see javassist.bytecode.ParameterAnnotationsAttribute#getAnnotations()
* @see MemberValue
* @see MemberValueVisitor
* @see AnnotationsWriter
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @author Shigeru Chiba

Loading…
İptal
Kaydet