Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2019-04-16 12:47:07 +0000
committerNicolas FAUVERGUE2019-04-16 15:38:21 +0000
commit4de7be31b8ad1677de2456a8aa1d01f75121f7d3 (patch)
tree24304453e2d0724fa51122798ac47ea34486b45f /plugins
parent348f441043bf9d53ed6c2b31869bb1f0dfc9ce78 (diff)
downloadorg.eclipse.papyrus-4de7be31b8ad1677de2456a8aa1d01f75121f7d3.tar.gz
org.eclipse.papyrus-4de7be31b8ad1677de2456a8aa1d01f75121f7d3.tar.xz
org.eclipse.papyrus-4de7be31b8ad1677de2456a8aa1d01f75121f7d3.zip
Bug 546239: [Toolsmiths][Validation] Plug-ins to validate profile
plug-in must be implemented - Wrong call Change-Id: I3c6ba8df59e48136fe18c0dbecd8ebe7fe954dc5 Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'plugins')
-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