Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRosendo Martinez2012-09-26 17:37:48 +0000
committerRosendo Martinez2012-09-26 17:37:48 +0000
commitdbc2066d6de0a987f7891aaa1a653112d484bb86 (patch)
tree5cdd34fc1b180370a87036fbb4927221255d67a4
parente3206b9967ca693cb5d1aa4390ed5495b6be903a (diff)
downloadwebtools.common-R3_3_2_patches.tar.gz
webtools.common-R3_3_2_patches.tar.xz
webtools.common-R3_3_2_patches.zip
Validator is not called when server created if workspace is not emptyv201209261900R3_3_2_patches
-rw-r--r--plugins/org.eclipse.wst.validation/META-INF/MANIFEST.MF2
-rw-r--r--plugins/org.eclipse.wst.validation/validate/org/eclipse/wst/validation/internal/EventManager.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.wst.validation/META-INF/MANIFEST.MF b/plugins/org.eclipse.wst.validation/META-INF/MANIFEST.MF
index 2d8383ff3..88b6a5cce 100644
--- a/plugins/org.eclipse.wst.validation/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.wst.validation/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.eclipse.wst.validation; singleton:=true
-Bundle-Version: 1.2.304.qualifier
+Bundle-Version: 1.2.305.qualifier
Bundle-Activator: org.eclipse.wst.validation.internal.plugin.ValidationPlugin
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
diff --git a/plugins/org.eclipse.wst.validation/validate/org/eclipse/wst/validation/internal/EventManager.java b/plugins/org.eclipse.wst.validation/validate/org/eclipse/wst/validation/internal/EventManager.java
index d603b8d36..554da8e67 100644
--- a/plugins/org.eclipse.wst.validation/validate/org/eclipse/wst/validation/internal/EventManager.java
+++ b/plugins/org.eclipse.wst.validation/validate/org/eclipse/wst/validation/internal/EventManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2001, 2008 IBM Corporation and others.
+ * Copyright (c) 2001, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -246,7 +246,7 @@ public class EventManager implements IResourceChangeListener {
deleting((IProject) event.getResource());
} else if ((event.getType() == IResourceChangeEvent.PRE_CLOSE) && isProject) {
closing((IProject) event.getResource());
- } else if (event.getType() == IResourceChangeEvent.POST_BUILD) {
+ } else if (event.getType() == IResourceChangeEvent.PRE_BUILD) {
postAutoChange(event.getDelta());
}
}

Back to the top