Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2013-04-27 16:26:34 +0000
committerSteffen Pingel2013-04-27 16:26:34 +0000
commit542c2a3ec5129854de11cfe9ae476b1b598c1078 (patch)
tree982b59676e2f0a1a9979535e60b573eb21dfcad8 /org.eclipse.mylyn.tasks.core
parentfb1bf0663dd3bd722b0003bb82b9b9a2cbf711fb (diff)
downloadorg.eclipse.mylyn.tasks-542c2a3ec5129854de11cfe9ae476b1b598c1078.tar.gz
org.eclipse.mylyn.tasks-542c2a3ec5129854de11cfe9ae476b1b598c1078.tar.xz
org.eclipse.mylyn.tasks-542c2a3ec5129854de11cfe9ae476b1b598c1078.zip
399302: reduce the number of warnings for all Tasks plugins
Change-Id: I2615efba4b9643ffa2bbce52d2172d6e8d1cf9bb Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=399302
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-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