Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpavery2005-10-06 19:15:32 +0000
committerpavery2005-10-06 19:15:32 +0000
commitca46ad0069eaacfcbe2c99c5a8fd9fe558615e19 (patch)
tree60724a2aa0ad431d585783a6b4cffe4419d20ea3 /bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile
parent73de5562f6cf83ee160afb30edadd387c8882f3e (diff)
downloadwebtools.sourceediting-ca46ad0069eaacfcbe2c99c5a8fd9fe558615e19.tar.gz
webtools.sourceediting-ca46ad0069eaacfcbe2c99c5a8fd9fe558615e19.tar.xz
webtools.sourceediting-ca46ad0069eaacfcbe2c99c5a8fd9fe558615e19.zip
[106052] ignoring OperationCanceleedException now
Diffstat (limited to 'bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile')
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
index 0b65b137ac..d0db821913 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
@@ -416,7 +416,11 @@ public class DirtyRegionProcessor extends Job implements IReconciler {
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=103676
// stop errors from popping up a dialog
// from the job manager
- Logger.logException("problem with as-you-type validation", e);
+
+ // https://bugs.eclipse.org/bugs/show_bug.cgi?id=106052
+ // don't log OperationCanceledException
+ if(!(e instanceof OperationCanceledException))
+ Logger.logException("problem with as-you-type validation", e);
}
finally {
monitor.done();

Back to the top