Skip to content

Commit cb7033e

Browse files
committed
Polishing.
Fix since version. [#634]
1 parent 24af094 commit cb7033e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/io/r2dbc/postgresql/PostgresqlConnectionConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ public Builder sslEngineCustomizer(Function<SSLEngine, SSLEngine> sslEngineCusto
885885
* @param sslParametersFactory customizer function
886886
* @return this {@link Builder}
887887
* @throws IllegalArgumentException if {@code sslParametersFactory} is {@code null}
888-
* @since 1.0.4
888+
* @since 1.0.5
889889
*/
890890
public Builder sslParameters(Function<SocketAddress, SSLParameters> sslParametersFactory) {
891891
this.sslParametersFactory = Assert.requireNonNull(sslParametersFactory, "sslParametersFactory must not be null");
@@ -898,7 +898,7 @@ public Builder sslParameters(Function<SocketAddress, SSLParameters> sslParameter
898898
* @param sslSni whether to indicate the hostname and port via SNI. Sets {@link SSLParameters#setServerNames(List)} on the {@link SSLParameters} instance provided by
899899
* {@link #sslParameters(Function)}.
900900
* @return this {@link Builder}
901-
* @since 1.0.4
901+
* @since 1.0.5
902902
*/
903903
public Builder sslSni(boolean sslSni) {
904904
this.sslSni = sslSni;

src/main/java/io/r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public final class PostgresqlConnectionFactoryProvider implements ConnectionFact
224224
/**
225225
* Configure whether to use SNI on SSL connections. Enabled by default.
226226
*
227-
* @since 1.0.4
227+
* @since 1.0.5
228228
*/
229229
public static final Option<Boolean> SSL_SNI = Option.valueOf("sslSni");
230230

0 commit comments

Comments
 (0)