Skip to content

Commit 440528d

Browse files
committed
fix PMD
1 parent 82edf08 commit 440528d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

cloudplatform/cloudplatform-connectivity/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DefaultHttpDestination.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,14 @@ public static class Builder
574574
@Nonnull
575575
Supplier<Option<KeyStore>> keystoreSupplier = Option::none;
576576

577+
/**
578+
* The trust store to be used when communicating over HTTP.
579+
*/
580+
@Setter( onParam_ = @Nullable )
581+
KeyStore trustStore = null;
582+
583+
final List<DestinationHeaderProvider> customHeaderProviders = new ArrayList<>();
584+
577585
/**
578586
* The {@link KeyStore} to be used when communicating over HTTP.
579587
*/
@@ -594,14 +602,6 @@ Builder keyStoreSupplier( @Nonnull final Supplier<Option<KeyStore>> supplier )
594602
return this;
595603
}
596604

597-
/**
598-
* The trust store to be used when communicating over HTTP.
599-
*/
600-
@Setter( onParam_ = @Nullable )
601-
KeyStore trustStore = null;
602-
603-
final List<DestinationHeaderProvider> customHeaderProviders = new ArrayList<>();
604-
605605
/**
606606
* Adds the given key-value pair to the destination to be created. This will overwrite any property already
607607
* assigned to the key.

0 commit comments

Comments
 (0)