Fixed typo in SimpleWsdl11Definition

Changed the word 'exit' in a log message to 'exist' as it was referring to a non-existent file.
This commit is contained in:
Dennis Laumen
2013-07-23 17:23:34 +02:00
parent 92869c7f41
commit 2858b0868b

View File

@@ -63,7 +63,7 @@ public class SimpleWsdl11Definition implements Wsdl11Definition, InitializingBea
public void afterPropertiesSet() throws Exception {
Assert.notNull(this.wsdlResource, "wsdl is required");
Assert.isTrue(this.wsdlResource.exists(), "wsdl '" + this.wsdlResource + "' does not exit");
Assert.isTrue(this.wsdlResource.exists(), "wsdl '" + this.wsdlResource + "' does not exist");
}
public Source getSource() {