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