Skip to content

Commit 84c3011

Browse files
pzygielodmatej
authored andcommitted
Remove unused parameter
1 parent dfad859 commit 84c3011

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nucleus/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/KeystoreManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected void createKeyStore(File keyStore, RepositoryConfig config, String mas
9898
}
9999

100100

101-
protected final void copyCertificatesToTrustStore(File configRoot, DomainConfig config, String masterPassword)
101+
protected final void copyCertificatesToTrustStore(File configRoot, String masterPassword)
102102
throws DomainException {
103103
final File keyStore = new File(configRoot, KEYSTORE_FILENAME_DEFAULT);
104104
final File trustStore = new File(configRoot, TRUSTSTORE_FILENAME_DEFAULT);

nucleus/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/domain/DomainSecurity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void createPasswordAliasKeystore(File pwFile, String password) throws Repository
7777
void createSSLCertificateDatabase(File configDir, DomainConfig config, String masterPassword) throws RepositoryException {
7878
createKeyStore(new File(configDir, KEYSTORE_FILENAME_DEFAULT), config, masterPassword);
7979
changeKeystorePassword(KEYSTORE_PASSWORD_DEFAULT, masterPassword, new File(configDir, TRUSTSTORE_FILENAME_DEFAULT));
80-
copyCertificatesToTrustStore(configDir, config, masterPassword);
80+
copyCertificatesToTrustStore(configDir, masterPassword);
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)