Skip to content

Commit 3eeb8b2

Browse files
committed
Spelling
1 parent 37bd3e9 commit 3eeb8b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

security/src/main/java/org/springframework/ws/soap/security/wss4j/support/CryptoFactoryBean.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
/**

xml/src/main/java/org/springframework/xml/sax/SaxUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)