We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c726cf commit 20de2e1Copy full SHA for 20de2e1
spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchemaCollection.java
@@ -134,7 +134,7 @@ public void afterPropertiesSet() throws IOException {
134
Set<XmlSchema> processedImports = new HashSet<XmlSchema>();
135
136
for (Resource xsdResource : xsdResources) {
137
- Assert.isTrue(xsdResource.exists(), xsdResource + " does not exit");
+ Assert.isTrue(xsdResource.exists(), xsdResource + " does not exist");
138
try {
139
XmlSchema xmlSchema =
140
schemaCollection.read(SaxUtils.createInputSource(xsdResource));
0 commit comments