Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-04-27 12:46:38 +0000
committerUwe Stieber2012-04-27 12:46:38 +0000
commit53e061b73fd2b825fbe0becf10179e0bee164ab6 (patch)
treee667c97a82c71307b15cbb3e948b12f87899eb95 /target_explorer/plugins
parente7cbd35d8a7e2af160c68dc7d755d2b7aaa59703 (diff)
downloadorg.eclipse.tcf-53e061b73fd2b825fbe0becf10179e0bee164ab6.tar.gz
org.eclipse.tcf-53e061b73fd2b825fbe0becf10179e0bee164ab6.tar.xz
org.eclipse.tcf-53e061b73fd2b825fbe0becf10179e0bee164ab6.zip
Target Explorer: Fix category properties tester does not return result
Diffstat (limited to 'target_explorer/plugins')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui.views/src/org/eclipse/tcf/te/ui/views/internal/categories/CategoryPropertyTester.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.views/src/org/eclipse/tcf/te/ui/views/internal/categories/CategoryPropertyTester.java b/target_explorer/plugins/org.eclipse.tcf.te.ui.views/src/org/eclipse/tcf/te/ui/views/internal/categories/CategoryPropertyTester.java
index 3bb242c4f..0f2ea6a00 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.ui.views/src/org/eclipse/tcf/te/ui/views/internal/categories/CategoryPropertyTester.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.views/src/org/eclipse/tcf/te/ui/views/internal/categories/CategoryPropertyTester.java
@@ -28,7 +28,7 @@ public class CategoryPropertyTester extends PropertyTester {
public boolean test(final Object receiver, final String property, final Object[] args, final Object expectedValue) {
if (receiver instanceof IStructuredSelection) {
// Analyze the selection
- testSelection((IStructuredSelection)receiver, property, args, expectedValue);
+ return testSelection((IStructuredSelection)receiver, property, args, expectedValue);
}
return false;
}

Back to the top