Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/IRepositoryConstants.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/IRepositoryConstants.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/IRepositoryConstants.java
index 14948b3ca..c947e77e3 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/IRepositoryConstants.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/IRepositoryConstants.java
@@ -44,22 +44,26 @@ public interface IRepositoryConstants {
/**
* @deprecated Use {@link TaskRepository#CATEGORY_TASKS} instead
*/
- public static final String CATEGORY_TASKS = TaskRepository.CATEGORY_TASKS; //$NON-NLS-1$
+ @Deprecated
+ public static final String CATEGORY_TASKS = TaskRepository.CATEGORY_TASKS;
/**
* @deprecated Use {@link TaskRepository#CATEGORY_BUGS} instead
*/
- public static final String CATEGORY_BUGS = TaskRepository.CATEGORY_BUGS; //$NON-NLS-1$
+ @Deprecated
+ public static final String CATEGORY_BUGS = TaskRepository.CATEGORY_BUGS;
/**
* @deprecated Use {@link TaskRepository#CATEGORY_BUILD} instead
*/
- public static final String CATEGORY_BUILD = TaskRepository.CATEGORY_BUILD; //$NON-NLS-1$
+ @Deprecated
+ public static final String CATEGORY_BUILD = TaskRepository.CATEGORY_BUILD;
/**
* @deprecated Use {@link TaskRepository#CATEGORY_REVIEW} instead
*/
- public static final String CATEGORY_REVIEW = TaskRepository.CATEGORY_REVIEW; //$NON-NLS-1$
+ @Deprecated
+ public static final String CATEGORY_REVIEW = TaskRepository.CATEGORY_REVIEW;
public static final String CATEGORY_OTHER = "org.eclipse.mylyn.category.other"; //$NON-NLS-1$

Back to the top