Skip to content

Commit 20de2e1

Browse files
michalbczgregturn
authored andcommitted
SWS-988 - Fix typo in assertion message
Original pull-request: #67
1 parent 9c726cf commit 20de2e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchemaCollection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void afterPropertiesSet() throws IOException {
134134
Set<XmlSchema> processedImports = new HashSet<XmlSchema>();
135135

136136
for (Resource xsdResource : xsdResources) {
137-
Assert.isTrue(xsdResource.exists(), xsdResource + " does not exit");
137+
Assert.isTrue(xsdResource.exists(), xsdResource + " does not exist");
138138
try {
139139
XmlSchema xmlSchema =
140140
schemaCollection.read(SaxUtils.createInputSource(xsdResource));

0 commit comments

Comments
 (0)