File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
security/src/main/java/org/springframework/ws/soap/security/wss4j/support
xml/src/main/java/org/springframework/xml/sax Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,11 @@ public void setCryptoProvider(Class cryptoProviderClass) {
8282 * This property maps to the WSS4J <code>org.apache.ws.security.crypto.merlin.file</code> property.
8383 *
8484 * @param location the key store location
85- * @throws java.io.IOException when the resource cannot be openened
85+ * @throws java.io.IOException when the resource cannot be opened
8686 */
8787 public void setKeyStoreLocation (Resource location ) throws IOException {
88- File keystoreFile = location .getFile ();
89- this .configuration .setProperty ("org.apache.ws.security.crypto.merlin.file" , keystoreFile .getAbsolutePath ());
88+ File keyStoreFile = location .getFile ();
89+ this .configuration .setProperty ("org.apache.ws.security.crypto.merlin.file" , keyStoreFile .getAbsolutePath ());
9090 }
9191
9292 /**
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public static InputSource createInputSource(Resource resource) throws IOExceptio
4848 return inputSource ;
4949 }
5050
51- /** Retrieves the URL from the given resource as System ID. Returns <code>null</code> if it cannot be openened . */
51+ /** Retrieves the URL from the given resource as System ID. Returns <code>null</code> if it cannot be opened . */
5252 public static String getSystemId (Resource resource ) {
5353 try {
5454 return new URI (resource .getURL ().toExternalForm ()).toString ();
You can’t perform that action at this time.
0 commit comments