Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2013-06-05 08:19:43 +0000
committerTomasz Zarna2013-06-05 08:19:43 +0000
commit421eb08c0a0d23a41e5250814e96eae0a26693f0 (patch)
treeb131a1458d9882376e687990905ef06a3e2a763a
parent31fba80064e2deaaa304a17b5ce53e27ed0be55d (diff)
downloadorg.eclipse.mylyn.tasks-421eb08c0a0d23a41e5250814e96eae0a26693f0.tar.gz
org.eclipse.mylyn.tasks-421eb08c0a0d23a41e5250814e96eae0a26693f0.tar.xz
org.eclipse.mylyn.tasks-421eb08c0a0d23a41e5250814e96eae0a26693f0.zip
409632: "Task List Indexer (Sleeping)" appears in progress view
Bug: 409632 Change-Id: I454a4a153753c5364b0fc8c6bbd143de0fb565f8 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=409632
-rw-r--r--org.eclipse.mylyn.tasks.index.core/src/org/eclipse/mylyn/internal/tasks/index/core/TaskListIndex.java4
1 files changed, 2 insertions, 2 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 9842e7d00..153c5df9a 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011, 2012 Tasktop Technologies.
+ * Copyright (c) 2011, 2013 Tasktop Technologies.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -157,7 +157,7 @@ public class TaskListIndex implements ITaskDataManagerListener, ITaskListChangeL
public MaintainIndexJob() {
super(Messages.TaskListIndex_indexerJob);
setUser(false);
- setSystem(false); // true?
+ setSystem(true);
setPriority(Job.LONG);
}

Back to the top