src/share/vm/classfile/javaClasses.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8076112 Cdiff src/share/vm/classfile/javaClasses.cpp

src/share/vm/classfile/javaClasses.cpp

Print this page

        

*** 1705,1716 **** // - 1 or more fillInStackTrace frames for the exception class (skipped) // - 0 or more <init> methods for the exception class (skipped) // - rest of the stack if (!skip_fillInStackTrace_check) { ! if ((method->name() == vmSymbols::fillInStackTrace_name() || ! method->name() == vmSymbols::fillInStackTrace0_name()) && throwable->is_a(method->method_holder())) { continue; } else { skip_fillInStackTrace_check = true; // gone past them all --- 1705,1715 ---- // - 1 or more fillInStackTrace frames for the exception class (skipped) // - 0 or more <init> methods for the exception class (skipped) // - rest of the stack if (!skip_fillInStackTrace_check) { ! if (method->name() == vmSymbols::fillInStackTrace_name() && throwable->is_a(method->method_holder())) { continue; } else { skip_fillInStackTrace_check = true; // gone past them all
src/share/vm/classfile/javaClasses.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File