https://bz.apache.org/bugzilla/show_bug.cgi?id=70038
--- Comment #1 from Remy Maucherat <[email protected]> --- The code there is: public Object clone() { try { Cookie clone = (Cookie) super.clone(); if (attributes != null) { clone.attributes = new TreeMap<>(String.CASE_INSENSITIVE_ORDER); clone.attributes.putAll(attributes); } return clone; } catch (CloneNotSupportedException e) { throw new RuntimeException(e.getMessage()); } } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
