Author: dkulp Date: Fri Apr 6 16:36:57 2012 New Revision: 1310461 URL: http://svn.apache.org/viewvc?rev=1310461&view=rev Log: Merged revisions 1307674 via svn merge from https://svn.apache.org/repos/asf/cxf/branches/2.5.x-fixes
........ r1307674 | dkulp | 2012-03-30 21:02:54 -0400 (Fri, 30 Mar 2012) | 9 lines Merged revisions 1307653 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1307653 | dkulp | 2012-03-30 19:49:56 -0400 (Fri, 30 Mar 2012) | 2 lines Fix a typo ........ ........ Modified: cxf/branches/2.4.x-fixes/ (props changed) cxf/branches/2.4.x-fixes/api/src/main/java/org/apache/cxf/service/model/SchemaInfo.java Propchange: cxf/branches/2.4.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.4.x-fixes/api/src/main/java/org/apache/cxf/service/model/SchemaInfo.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/api/src/main/java/org/apache/cxf/service/model/SchemaInfo.java?rev=1310461&r1=1310460&r2=1310461&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/api/src/main/java/org/apache/cxf/service/model/SchemaInfo.java (original) +++ cxf/branches/2.4.x-fixes/api/src/main/java/org/apache/cxf/service/model/SchemaInfo.java Fri Apr 6 16:36:57 2012 @@ -90,7 +90,7 @@ public final class SchemaInfo extends Ab return element; } if (getSchema() == null) { - throw new RuntimeException("No XmlSchma in SchemaInfo"); + throw new RuntimeException("No XmlSchema in SchemaInfo"); } XmlSchema sch = getSchema();
