Author: dkulp
Date: Thu Nov 15 06:55:01 2007
New Revision: 595322

URL: http://svn.apache.org/viewvc?rev=595322&view=rev
Log:
Merged revisions 595191 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r595191 | bimargulies | 2007-11-14 21:42:22 -0500 (Wed, 14 Nov 2007) | 2 lines
  
  Clarify validation messages.
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java?rev=595322&r1=595321&r2=595322&view=diff
==============================================================================
--- 
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
 (original)
+++ 
incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/xmlschema/SchemaCollection.java
 Thu Nov 15 06:55:01 2007
@@ -176,7 +176,7 @@
         XmlSchemaElement element = 
schemaCollection.getElementByQName(elementQName);
         if (element == null) {
             throw new InvalidXmlSchemaReferenceException(referrer 
-                                                         + " references "
+                                                         + " references 
element "
                                                          + elementQName);
         }
     }
@@ -185,7 +185,7 @@
         XmlSchemaType type = schemaCollection.getTypeByQName(typeQName);
         if (type == null) {
             throw new InvalidXmlSchemaReferenceException(referrer 
-                                                         + " references "
+                                                         + " references type "
                                                          + typeQName);
         }
     }


Reply via email to