403404405406407408409410411412413
Series<Cookie> c = this.cookies; if (c == null) { synchronized (this) { c = this.cookies; if (c == null) { this.cookies = c = new CookieSeries(); } } } return c; }