File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
config-vault/src/main/java/io/scalecube/config/vault Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -140,13 +140,12 @@ public Builder vault(UnaryOperator<VaultInvoker.Builder> opts) {
140140 }
141141
142142 public Builder config (UnaryOperator <VaultConfig > vaultConfig ) {
143- this .builderFunction = this .builderFunction .andThen (builder -> builder .options (vaultConfig ));
143+ this .builderFunction = this .builderFunction .andThen (b -> b .options (vaultConfig ));
144144 return this ;
145145 }
146146
147147 public Builder tokenSupplier (VaultTokenSupplier supplier ) {
148- this .builderFunction =
149- this .builderFunction .andThen (builder -> builder .tokenSupplier (supplier ));
148+ this .builderFunction = this .builderFunction .andThen (b -> b .tokenSupplier (supplier ));
150149 return this ;
151150 }
152151
You can’t perform that action at this time.
0 commit comments