Set maxAge to Integer.MIN_VALUE by default. See #534

This commit is contained in:
Norman Maurer 2012-08-19 10:53:13 +02:00
parent af672039d7
commit f7f0511193

View File

@ -108,7 +108,7 @@ public class CookieDecoder {
String commentURL = null;
String domain = null;
String path = null;
int maxAge = -1;
int maxAge = Integer.MIN_VALUE;
List<Integer> ports = new ArrayList<Integer>(2);
for (int j = i + 1; j < names.size(); j++, i++) {