1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -128,7 +128,7 @@ public enum HttpStatus {
128
128
/**
129
129
* {@code 302 Moved Temporarily}.
130
130
* @see <a href="http://tools.ietf.org/html/rfc1945#section-9.3">HTTP/1.0, section 9.3</a>
131
- * @deprecated In favor of {@link #FOUND} which will be returned from {@code HttpStatus.valueOf(302)}
131
+ * @deprecated in favor of {@link #FOUND} which will be returned from {@code HttpStatus.valueOf(302)}
132
132
*/
133
133
@ Deprecated
134
134
MOVED_TEMPORARILY (302 , "Moved Temporarily" ),
@@ -236,7 +236,7 @@ public enum HttpStatus {
236
236
/**
237
237
* {@code 413 Request Entity Too Large}.
238
238
* @see <a href="http://tools.ietf.org/html/rfc2616#section-10.4.14">HTTP/1.1, section 10.4.14</a>
239
- * @deprecated In favor of {@link #PAYLOAD_TOO_LARGE} which will be returned from {@code HttpStatus.valueOf(413)}
239
+ * @deprecated in favor of {@link #PAYLOAD_TOO_LARGE} which will be returned from {@code HttpStatus.valueOf(413)}
240
240
*/
241
241
@ Deprecated
242
242
REQUEST_ENTITY_TOO_LARGE (413 , "Request Entity Too Large" ),
@@ -249,7 +249,7 @@ public enum HttpStatus {
249
249
/**
250
250
* {@code 414 Request-URI Too Long}.
251
251
* @see <a href="http://tools.ietf.org/html/rfc2616#section-10.4.15">HTTP/1.1, section 10.4.15</a>
252
- * @deprecated In favor of {@link #URI_TOO_LONG} which will be returned from {@code HttpStatus.valueOf(414)}
252
+ * @deprecated in favor of {@link #URI_TOO_LONG} which will be returned from {@code HttpStatus.valueOf(414)}
253
253
*/
254
254
@ Deprecated
255
255
REQUEST_URI_TOO_LONG (414 , "Request-URI Too Long" ),
0 commit comments