Skip to content

Commit 91fa184

Browse files
author
Stephane Landelle
committed
Remove Cookie extra constructors deprecation
1 parent 154ebdc commit 91fa184

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/com/ning/http/client/Cookie.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,10 @@ public class Cookie implements Comparable<Cookie> {
3636
private Set<Integer> ports = Collections.emptySet();
3737
private Set<Integer> unmodifiablePorts = ports;
3838

39-
@Deprecated
4039
public Cookie(String domain, String name, String value, String path, int maxAge, boolean secure) {
4140
this(domain, name, value, path, maxAge, secure, 1);
4241
}
4342

44-
@Deprecated
4543
public Cookie(String domain, String name, String value, String path, int maxAge, boolean secure, int version) {
4644
this(domain, name, value, path, maxAge, secure, version, false, false, null, null, Collections.<Integer> emptySet());
4745
}

0 commit comments

Comments
 (0)