Index: Source/bindings/v8/ExceptionState.cpp |
diff --git a/Source/bindings/v8/ExceptionState.cpp b/Source/bindings/v8/ExceptionState.cpp |
index 005668015f43232abd39c8f1dc9972b8b063994e..1d95598c623298e3a1156d06502bf2ba0e973d37 100644 |
--- a/Source/bindings/v8/ExceptionState.cpp |
+++ b/Source/bindings/v8/ExceptionState.cpp |
@@ -81,9 +81,6 @@ void ExceptionState::setException(v8::Handle<v8::Value> exception) |
void ExceptionState::throwException() |
{ |
- ASSERT(!m_exception.isEmpty() || m_code); |
- if (m_exception.isEmpty()) |
- throwDOMException(m_code, String()); // FIXME: Do we ever hit this? If so, where and why? |
ASSERT(!m_exception.isEmpty()); |
V8ThrowException::throwError(m_exception.newLocal(m_isolate), m_isolate); |
} |