src/main/java/software/amazon/encryption/s3/materials/KmsDiscoveryKeyring.java [148:164]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private Builder() {
      super();
    }

    @Override
    protected Builder builder() {
      return this;
    }

    /**
     * Note that this does NOT create a defensive clone of KmsClient. Any modifications made to the wrapped
     * client will be reflected in this Builder.
     */
    @SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "Pass mutability into wrapping client")
    public Builder kmsClient(KmsClient kmsClient) {
      _kmsClient = kmsClient;
      return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/amazon/encryption/s3/materials/KmsKeyring.java [237:253]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private Builder() {
            super();
        }

        @Override
        protected Builder builder() {
            return this;
        }

        /**
         * Note that this does NOT create a defensive clone of KmsClient. Any modifications made to the wrapped
         * client will be reflected in this Builder.
         */
        @SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "Pass mutability into wrapping client")
        public Builder kmsClient(KmsClient kmsClient) {
            _kmsClient = kmsClient;
            return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



