Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2012-02-11 14:43:34 +0000
committerSteffen Pingel2012-02-11 14:43:34 +0000
commita73ad6d430c3fcbcfbd0ef75765f1d6397ddc46e (patch)
tree2d4df0b9e932471dab8330dfdd5621543bb435a8 /org.eclipse.mylyn.tasks.index.core
parentfa6a5fb9967a08f54e5800a1b239c03bfb4850ba (diff)
downloadorg.eclipse.mylyn.tasks-a73ad6d430c3fcbcfbd0ef75765f1d6397ddc46e.tar.gz
org.eclipse.mylyn.tasks-a73ad6d430c3fcbcfbd0ef75765f1d6397ddc46e.tar.xz
org.eclipse.mylyn.tasks-a73ad6d430c3fcbcfbd0ef75765f1d6397ddc46e.zip
NEW - bug 191522: provide full text search functionality over task
comments https://bugs.eclipse.org/bugs/show_bug.cgi?id=191522
Diffstat (limited to 'org.eclipse.mylyn.tasks.index.core')
-rw-r--r--org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java b/org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java
index 0436cd70b..cdefbfdbf 100644
--- a/org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java
+++ b/org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java
@@ -787,7 +787,7 @@ public class TaskListIndex implements ITaskDataManagerListener, ITaskListChangeL
private void addIndexedAttributes(Document document, ITask task, TaskAttribute root) {
addIndexedAttribute(document, IndexField.TASK_KEY, task.getTaskKey());
addIndexedAttribute(document, IndexField.REPOSITORY_URL, task.getRepositoryUrl());
- addIndexedAttribute(document, IndexField.SUMMARY, root.getMappedAttribute(TaskAttribute.SUMMARY));
+ addIndexedAttribute(document, IndexField.SUMMARY, task.getSummary());
for (TaskAttribute contentAttribute : computeContentAttributes(root)) {
addIndexedAttribute(document, IndexField.CONTENT, contentAttribute);

Back to the top