Remove entrDepthWatchdog exception reporting.
Review by: rjrjr@google.com
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10677 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/core/client/impl/Impl.java b/user/src/com/google/gwt/core/client/impl/Impl.java
index 8aed154..f0080bf 100644
--- a/user/src/com/google/gwt/core/client/impl/Impl.java
+++ b/user/src/com/google/gwt/core/client/impl/Impl.java
@@ -293,13 +293,7 @@
// Note: this must NEVER be called nested in a $entry() call.
// This method is call from a "setTimeout": entryDepth should be set to 0.
if (GWT.isScript() && entryDepth != 0) {
- int oldDepth = entryDepth;
entryDepth = 0;
- if (GWT.getUncaughtExceptionHandler() != null) {
- // Report the problem.
- GWT.getUncaughtExceptionHandler().onUncaughtException(
- new IllegalStateException("Invalid entryDepth value " + oldDepth));
- }
}
watchdogEntryDepthTimerId = -1; // Timer has run.
}