@@ -71,10 +71,7 @@ public interface Issue extends Serializable {
71
71
*/
72
72
@ Deprecated (since = "10.4" )
73
73
String STATUS_CLOSED = "CLOSED" ;
74
- /**
75
- * @deprecated since 10.4 in favor of {@link IssueStatus}
76
- */
77
- @ Deprecated (since = "10.4" )
74
+
78
75
String RESOLUTION_FIXED = "FIXED" ;
79
76
80
77
/**
@@ -103,18 +100,14 @@ public interface Issue extends Serializable {
103
100
104
101
/**
105
102
* Security Hotspot has been reviewed and resolved as safe.
106
- * @deprecated since 10.4 as Security Hotspot are deprecated.
107
103
* @since 8.1
108
104
*/
109
- @ Deprecated (since = "10.4" )
110
105
String RESOLUTION_SAFE = "SAFE" ;
111
106
112
107
/**
113
108
* Security Hotspot has been reviewed and acknowledged that it poses a risk.
114
- * @deprecated since 10.4 as Security Hotspot are deprecated.
115
109
* @since 9.4
116
110
*/
117
- @ Deprecated (since = "10.4" )
118
111
String RESOLUTION_ACKNOWLEDGED = "ACKNOWLEDGED" ;
119
112
120
113
/**
@@ -124,16 +117,8 @@ public interface Issue extends Serializable {
124
117
List <String > RESOLUTIONS = List .of (RESOLUTION_FALSE_POSITIVE , RESOLUTION_WONT_FIX , RESOLUTION_FIXED ,
125
118
RESOLUTION_REMOVED );
126
119
127
- /**
128
- * @deprecated since 10.4 as Security Hotspot are deprecated
129
- */
130
- @ Deprecated (since = "10.4" )
131
120
List <String > SECURITY_HOTSPOT_RESOLUTIONS = List .of (RESOLUTION_FIXED , RESOLUTION_SAFE , RESOLUTION_ACKNOWLEDGED );
132
121
133
- /**
134
- * @deprecated since 10.4 as Security Hotspot are deprecated
135
- */
136
- @ Deprecated (since = "10.4" )
137
122
String STATUS_TO_REVIEW = "TO_REVIEW" ;
138
123
139
124
/**
@@ -142,10 +127,6 @@ public interface Issue extends Serializable {
142
127
@ Deprecated (since = "8.1" )
143
128
String STATUS_IN_REVIEW = "IN_REVIEW" ;
144
129
145
- /**
146
- * @deprecated since 10.4 as Security Hotspot are deprecated
147
- */
148
- @ Deprecated (since = "10.4" )
149
130
String STATUS_REVIEWED = "REVIEWED" ;
150
131
151
132
/**
@@ -205,14 +186,14 @@ public interface Issue extends Serializable {
205
186
206
187
/**
207
188
* See constant values in {@link Issue}.
208
- * @deprecated since 10.4 in favor of {@link IssueStatus}
189
+ * @deprecated since 10.4 in favor of {@link IssueStatus}. Not deprecated for hotspots
209
190
*/
210
191
@ Deprecated (since = "10.4" )
211
192
String status ();
212
193
213
194
/**
214
195
* The type of resolution, or null if the issue is not resolved. See constant values in {@link Issue}.
215
- * @deprecated since 10.4 in favor of {@link IssueStatus}
196
+ * @deprecated since 10.4 in favor of {@link IssueStatus}. Not deprecated for hotspots
216
197
*/
217
198
@ CheckForNull
218
199
@ Deprecated (since = "10.4" )
0 commit comments