Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/toolsmiths/validation/org.eclipse.papyrus.toolsmiths.validation.profile/src/org/eclipse/papyrus/toolsmiths/validation/profile/checkers/ProfilePluginCheckerService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/toolsmiths/validation/org.eclipse.papyrus.toolsmiths.validation.profile/src/org/eclipse/papyrus/toolsmiths/validation/profile/checkers/ProfilePluginCheckerService.java b/plugins/toolsmiths/validation/org.eclipse.papyrus.toolsmiths.validation.profile/src/org/eclipse/papyrus/toolsmiths/validation/profile/checkers/ProfilePluginCheckerService.java
index 4135d75c45a..8137eef7d01 100644
--- a/plugins/toolsmiths/validation/org.eclipse.papyrus.toolsmiths.validation.profile/src/org/eclipse/papyrus/toolsmiths/validation/profile/checkers/ProfilePluginCheckerService.java
+++ b/plugins/toolsmiths/validation/org.eclipse.papyrus.toolsmiths.validation.profile/src/org/eclipse/papyrus/toolsmiths/validation/profile/checkers/ProfilePluginCheckerService.java
@@ -16,6 +16,7 @@
package org.eclipse.papyrus.toolsmiths.validation.profile.checkers;
import org.eclipse.core.resources.IProject;
+import org.eclipse.papyrus.toolsmiths.validation.profile.internal.checkers.ProfilePluginChecker;
/**
* This allows to check a profile plug-in (extensions, builds, dependencies).
@@ -29,7 +30,7 @@ public class ProfilePluginCheckerService {
* The current project to check.
*/
public static void checkProfilePlugin(final IProject project) {
- ProfilePluginCheckerService.checkProfilePlugin(project);
+ ProfilePluginChecker.checkProfilePlugin(project);
}
}

Back to the top