You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/04/26 19:20:05 UTC

svn commit: r1476302 - /cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java

Author: dkulp
Date: Fri Apr 26 17:20:05 2013
New Revision: 1476302

URL: http://svn.apache.org/r1476302
Log:
FIx compile failure

Modified:
    cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java

Modified: cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java?rev=1476302&r1=1476301&r2=1476302&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java (original)
+++ cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/jaxb/JAXBContextCache.java Fri Apr 26 17:20:05 2013
@@ -216,7 +216,7 @@ public final class JAXBContextCache {  
             } catch (JAXBException ex) {
                 // load jaxb needed class and try to create jaxb context 
                 boolean added = addJaxbObjectFactory(ex, classes);
-                while (cachedContextAndSchemas == null && added) {
+                while (cachedContextAndSchemasInternal == null && added) {
                     try {
                         context = AccessController.doPrivileged(new PrivilegedExceptionAction<JAXBContext>() {
                             public JAXBContext run() throws Exception {