org.springframework.boot.autoconfigure.couchbase.CouchbaseProperties.Authentication.Jks#getPrivateKeyPassword
isn't used anywhere. Investigate if that's an oversight or if the property can be removed.
Comment From: Sarankumar18
@mhalbritter
Removing privateKeyPassword
from CouchbaseProperties.Authentication.Jks. This property is not used anywhere internally in Spring Boot's Couchbase auto-configuration. It is not bound from configuration files, nor referenced in any logic or tests. Removing it helps eliminate dead code and reduces confusion for users.
Comment From: wilkinsona
@Sarankumar18 Apologies if it's not the case, but that comment reads to me like it was generated by an LLM. If that is the case, it's not beneficial to the project as we could ask an LLM ourselves if we wanted to do so. It also doesn't add anything new as the issue already states that getPrivateKeyPassword
"isn't used anywhere". We now need to investigate why it's not being used and either start using it if that's an oversight or remove it if it's not.