Set maxAge to Integer.MIN_VALUE by default. See #534
This commit is contained in:
parent
e80abf0b39
commit
c22b559dfa
@ -94,7 +94,7 @@ public final class CookieDecoder {
|
||||
String commentURL = null;
|
||||
String domain = null;
|
||||
String path = null;
|
||||
long maxAge = -1;
|
||||
long maxAge = Integer.MIN_VALUE;
|
||||
List<Integer> ports = new ArrayList<Integer>(2);
|
||||
|
||||
for (int j = i + 1; j < names.size(); j++, i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user