File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
spring-web/src/main/java/org/springframework/http Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1140,6 +1140,7 @@ public void setIfMatch(List<String> ifMatchList) {
1140
1140
1141
1141
/**
1142
1142
* Return the value of the {@code If-Match} header.
1143
+ * @throws IllegalArgumentException if parsing fails
1143
1144
* @since 4.3
1144
1145
*/
1145
1146
public List <String > getIfMatch () {
@@ -1199,6 +1200,7 @@ public void setIfNoneMatch(List<String> ifNoneMatchList) {
1199
1200
1200
1201
/**
1201
1202
* Return the value of the {@code If-None-Match} header.
1203
+ * @throws IllegalArgumentException if parsing fails
1202
1204
*/
1203
1205
public List <String > getIfNoneMatch () {
1204
1206
return getETagValuesAsList (IF_NONE_MATCH );
@@ -1542,6 +1544,7 @@ public void clearContentHeaders() {
1542
1544
* Retrieve a combined result from the field values of the ETag header.
1543
1545
* @param headerName the header name
1544
1546
* @return the combined result
1547
+ * @throws IllegalArgumentException if parsing fails
1545
1548
* @since 4.3
1546
1549
*/
1547
1550
protected List <String > getETagValuesAsList (String headerName ) {
You can’t perform that action at this time.
0 commit comments