Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Sandonato2013-05-14 19:16:07 +0000
committerNick Sandonato2013-05-15 14:23:55 +0000
commit25f813563a1bfc509c99887394262fa1fedf1301 (patch)
tree95fffc6b4646525126781420b1946c97ddd841d9
parente9072bbc75ff0b6e515e3ce223851dd8e9b5cb30 (diff)
downloadwebtools.sourceediting-25f813563a1bfc509c99887394262fa1fedf1301.tar.gz
webtools.sourceediting-25f813563a1bfc509c99887394262fa1fedf1301.tar.xz
webtools.sourceediting-25f813563a1bfc509c99887394262fa1fedf1301.zip
[408058] ResourceNotFoundException logged frequently when dragging items from the Palettev201305151425
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/JSPTranslation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/JSPTranslation.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/JSPTranslation.java
index ac6ac640eb..428e28922b 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/JSPTranslation.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/JSPTranslation.java
@@ -541,7 +541,7 @@ public class JSPTranslation implements IJSPTranslation {
if (cu != null) {
try {
synchronized(cu) {
- cu.reconcile(ICompilationUnit.NO_AST, true, getWorkingCopyOwner(), getProgressMonitor());
+ cu.reconcile(ICompilationUnit.NO_AST, false, getWorkingCopyOwner(), getProgressMonitor());
}
}
catch (JavaModelException e) {

Back to the top