summaryrefslogtreecommitdiff
path: root/runtime/entrypoints/entrypoint_utils-inl.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-03-04 11:13:16 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-04 11:13:17 +0000
commit3d7d2af4c6502b771b032ee9bf3ab30e78f9c60d (patch)
treecc15416fa8208661fe98a19055fa4c98010a0e53 /runtime/entrypoints/entrypoint_utils-inl.h
parent87896b3a1f97c815fe02c7490c1f27951c58bbbf (diff)
parent7642cfc90fc9c3ebfd8e3b5041915705c93b5cf0 (diff)
Merge "Change how we report exceptions to the debugger."
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils-inl.h')
-rw-r--r--runtime/entrypoints/entrypoint_utils-inl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/entrypoints/entrypoint_utils-inl.h b/runtime/entrypoints/entrypoint_utils-inl.h
index 35579d66d4..9d84e4ac48 100644
--- a/runtime/entrypoints/entrypoint_utils-inl.h
+++ b/runtime/entrypoints/entrypoint_utils-inl.h
@@ -614,7 +614,6 @@ inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) {
// Save any pending exception over monitor exit call.
mirror::Throwable* saved_exception = NULL;
ThrowLocation saved_throw_location;
- bool is_exception_reported = self->IsExceptionReportedToInstrumentation();
if (UNLIKELY(self->IsExceptionPending())) {
saved_exception = self->GetException(&saved_throw_location);
self->ClearException();
@@ -630,7 +629,6 @@ inline void UnlockJniSynchronizedMethod(jobject locked, Thread* self) {
// Restore pending exception.
if (saved_exception != NULL) {
self->SetException(saved_throw_location, saved_exception);
- self->SetExceptionReportedToInstrumentation(is_exception_reported);
}
}