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:
authornitind2007-10-30 21:55:54 +0000
committernitind2007-10-30 21:55:54 +0000
commit8a19dbe9ec303ffb32e111a363ed480b75bc7380 (patch)
tree26ec0822b183567c90b8179335cd0f01e719c823 /bundles/org.eclipse.jst.jsp.core/src/org
parent31dd4e590fceb648f9535f96fa2aee0b171ce330 (diff)
downloadwebtools.sourceediting-8a19dbe9ec303ffb32e111a363ed480b75bc7380.tar.gz
webtools.sourceediting-8a19dbe9ec303ffb32e111a363ed480b75bc7380.tar.xz
webtools.sourceediting-8a19dbe9ec303ffb32e111a363ed480b75bc7380.zip
[nobug] cleanup compile warnings
Diffstat (limited to 'bundles/org.eclipse.jst.jsp.core/src/org')
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/util/FacetModuleCoreSupport.java2
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/validation/JSPBatchValidator.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/util/FacetModuleCoreSupport.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/util/FacetModuleCoreSupport.java
index ed5fa7d3bf..f705669a6c 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/util/FacetModuleCoreSupport.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/util/FacetModuleCoreSupport.java
@@ -40,7 +40,7 @@ public final class FacetModuleCoreSupport {
* @param project
* @return -1 if the project does not have the JST Web facet, the version
* number of it otherwise
- * @throws CoreException
+ * @throws org.eclipse.core.runtime.CoreException
*/
public static float getDynamicWebProjectVersion(IProject project) {
// In the absence of any facet information, assume the highest level
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/validation/JSPBatchValidator.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/validation/JSPBatchValidator.java
index 63357a3fff..e854d6fa7c 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/validation/JSPBatchValidator.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/validation/JSPBatchValidator.java
@@ -441,7 +441,7 @@ public final class JSPBatchValidator implements IValidatorJob, IExecutableExtens
}
public IStatus validateInJob(final IValidationContext helper, final IReporter reporter) throws ValidationException {
- Job currentJob = Platform.getJobManager().currentJob();
+ Job currentJob = Job.getJobManager().currentJob();
ISchedulingRule rule = null;
if (currentJob != null) {
rule = currentJob.getRule();

Back to the top