Details
Description
Static method java.net.HttpCookie.parse is not threadsafe in that calling this method across multiple threads (but on thread local objects) will corrupt the resulting HttpCookie objects. The problem is the class is sharing static Setter objects for each cookie property, to prevent the properties being set multiple times. The fix is to make these object local.