Skip to content

Commit 498df49

Browse files
committed
Remove unused JKS privateKeyPassword property from Couchbase
Closes gh-45883
1 parent b6d8e72 commit 498df49

File tree

1 file changed

+1
-14
lines changed
  • spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/couchbase

1 file changed

+1
-14
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/couchbase/CouchbaseProperties.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -155,11 +155,6 @@ public static class Jks {
155155
*/
156156
private String password;
157157

158-
/**
159-
* Private key password for certificate-based cluster authentication.
160-
*/
161-
private String privateKeyPassword;
162-
163158
public String getLocation() {
164159
return this.location;
165160
}
@@ -176,14 +171,6 @@ public void setPassword(String password) {
176171
this.password = password;
177172
}
178173

179-
public String getPrivateKeyPassword() {
180-
return this.privateKeyPassword;
181-
}
182-
183-
public void setPrivateKeyPassword(String privateKeyPassword) {
184-
this.privateKeyPassword = privateKeyPassword;
185-
}
186-
187174
}
188175

189176
}

0 commit comments

Comments
 (0)