Made cookie.SM an interface as long as it has no methods. It looked ugly on test coverage reports with its 0% of coverage.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@550078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3fc997fbed
commit
e8ca9b1d65
|
@ -38,13 +38,10 @@ package org.apache.http.cookie;
|
||||||
*
|
*
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public final class SM {
|
public interface SM {
|
||||||
|
|
||||||
public static final String COOKIE= "Cookie";
|
public static final String COOKIE= "Cookie";
|
||||||
|
|
||||||
public static final String SET_COOKIE = "Set-Cookie";
|
public static final String SET_COOKIE = "Set-Cookie";
|
||||||
|
|
||||||
private SM() {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue