Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2011-06-09 18:57:04 +0000
committerfbecker2011-06-09 18:57:04 +0000
commitecb7f2e7735bda45a8b76341165e27d5ff020a77 (patch)
tree262858ec75cec5e3c73d78b72353cefa5b64bde6 /org.eclipse.mylyn.tasks.core/src/org/eclipse
parentd9f09b3e0ec2566a4bd9550c5d6fc45fbddb4a3f (diff)
downloadorg.eclipse.mylyn.tasks-ecb7f2e7735bda45a8b76341165e27d5ff020a77.tar.gz
org.eclipse.mylyn.tasks-ecb7f2e7735bda45a8b76341165e27d5ff020a77.tar.xz
org.eclipse.mylyn.tasks-ecb7f2e7735bda45a8b76341165e27d5ff020a77.zip
ASSIGNED - bug 348356: reduce the number of warnings in framework plugins
https://bugs.eclipse.org/bugs/show_bug.cgi?id=348356
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/sync/GetTaskHistoryJob.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/sync/GetTaskHistoryJob.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/sync/GetTaskHistoryJob.java
index 67c34af1c..5fb8f9abc 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/sync/GetTaskHistoryJob.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/sync/GetTaskHistoryJob.java
@@ -40,7 +40,7 @@ public class GetTaskHistoryJob extends TaskJob {
private TaskHistory history;
public GetTaskHistoryJob(AbstractRepositoryConnector connector, TaskRepository repository, ITask task) {
- super("Retrieving History");
+ super(Messages.GetTaskHistoryJob_Retrieving_History);
this.connector = connector;
this.repository = repository;
this.task = task;

Back to the top