# HG changeset patch # User mkos # Date 1391700710 -3600 # Node ID 56f131d22c8bf654d71c26fcae15ce39972acb6e # Parent 1a3b4e7b7a0ad11285d63c38ea50f841a2fbd71d 8026801: Enhance endpoint addressing Summary: Caching data initialized via TCCL in static context; fix also reviewed by Iaroslav Savytskyi, Alexander Fomin Reviewed-by: ahgross, mgrebac, skoivu diff -r 1a3b4e7b7a0a -r 56f131d22c8b src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java --- a/src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java Tue Feb 04 22:45:22 2014 -0800 +++ b/src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java Thu Feb 06 16:31:50 2014 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -69,7 +69,7 @@ @XmlType(name="EndpointReferenceType",namespace=W3CEndpointReference.NS) public final class W3CEndpointReference extends EndpointReference { - private final static JAXBContext w3cjc = getW3CJaxbContext(); + private final JAXBContext w3cjc = getW3CJaxbContext(); // should be changed to package private, keeping original modifier to keep backwards compatibility protected static final String NS = "http://www.w3.org/2005/08/addressing";