From 4de7be31b8ad1677de2456a8aa1d01f75121f7d3 Mon Sep 17 00:00:00 2001 From: Nicolas FAUVERGUE Date: Tue, 16 Apr 2019 14:47:07 +0200 Subject: Bug 546239: [Toolsmiths][Validation] Plug-ins to validate profile plug-in must be implemented - Wrong call Change-Id: I3c6ba8df59e48136fe18c0dbecd8ebe7fe954dc5 Signed-off-by: Nicolas FAUVERGUE --- .../validation/profile/checkers/ProfilePluginCheckerService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- cgit v1.2.3