From 6c36bec5957905f0e56b0ceb549ee483fe0e95f8 Mon Sep 17 00:00:00 2001 From: Martin Lippert Date: Thu, 26 Apr 2012 16:20:21 +0200 Subject: [PATCH] IDE-1243: pointcut matches are now working again, missed to recursively search in bean components --- .../ide/eclipse/aop/ui/matcher/internal/PointcutMatchQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.springframework.ide.eclipse.aop.ui.matcher/src/org/springframework/ide/eclipse/aop/ui/matcher/internal/PointcutMatchQuery.java b/plugins/org.springframework.ide.eclipse.aop.ui.matcher/src/org/springframework/ide/eclipse/aop/ui/matcher/internal/PointcutMatchQuery.java index 937685569d..0391b1496f 100755 --- a/plugins/org.springframework.ide.eclipse.aop.ui.matcher/src/org/springframework/ide/eclipse/aop/ui/matcher/internal/PointcutMatchQuery.java +++ b/plugins/org.springframework.ide.eclipse.aop.ui.matcher/src/org/springframework/ide/eclipse/aop/ui/matcher/internal/PointcutMatchQuery.java @@ -215,7 +215,7 @@ public boolean visit(final IModelElement element, IProgressMonitor monitor) { try { // get beans before messing around with the class // loader - final Set beans = config.getBeans(); + final Set beans = BeansModelUtils.getBeans(config); getClassLoaderSupport(project).executeCallback( new IProjectClassLoaderSupport.IProjectClassLoaderAwareCallback() {