Fixed regression introduced in previous commit. Throwable.printStackTrace() should do a virtual invocation of Throwable.printStackTrace(PrintStream).

This commit is contained in:
jfrijters 2011-06-26 06:58:57 +00:00
Родитель 1ece25e884
Коммит 252871416f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -207,7 +207,7 @@ final class ThrowableHelper {
* </pre> * </pre>
*/ */
public static void printStackTrace(Throwable _this) { public static void printStackTrace(Throwable _this) {
printStackTrace(_this, System.err); _this.printStackTrace(System.err);
} }
/** /**