Skip to content

Commit 34b0181

Browse files
authored
Fix Javadoc.
Original Pull Request: #2562 Closes #2561
1 parent f464f77 commit 34b0181

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

src/main/java/org/springframework/data/elasticsearch/client/ClientConfiguration.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,16 +137,13 @@ static ClientConfiguration create(InetSocketAddress socketAddress) {
137137
* Returns the {@link java.time.Duration connect timeout}.
138138
*
139139
* @see java.net.Socket#connect(SocketAddress, int)
140-
* @see io.netty.channel.ChannelOption#CONNECT_TIMEOUT_MILLIS
141140
*/
142141
Duration getConnectTimeout();
143142

144143
/**
145144
* Returns the {@link java.time.Duration socket timeout} which is typically applied as SO-timeout/read timeout.
146145
*
147146
* @see java.net.Socket#setSoTimeout(int)
148-
* @see io.netty.handler.timeout.ReadTimeoutHandler
149-
* @see io.netty.handler.timeout.WriteTimeoutHandler
150147
*/
151148
Duration getSocketTimeout();
152149

@@ -294,7 +291,6 @@ default TerminalClientConfigurationBuilder withConnectTimeout(long millis) {
294291
* @param timeout the timeout to use. Must not be {@literal null}.
295292
* @return the {@link TerminalClientConfigurationBuilder}
296293
* @see java.net.Socket#connect(SocketAddress, int)
297-
* @see io.netty.channel.ChannelOption#CONNECT_TIMEOUT_MILLIS
298294
*/
299295
TerminalClientConfigurationBuilder withConnectTimeout(Duration timeout);
300296

@@ -315,8 +311,6 @@ default TerminalClientConfigurationBuilder withSocketTimeout(long millis) {
315311
* @param timeout the timeout to use. Must not be {@literal null}.
316312
* @return the {@link TerminalClientConfigurationBuilder}
317313
* @see java.net.Socket#setSoTimeout(int)
318-
* @see io.netty.handler.timeout.ReadTimeoutHandler
319-
* @see io.netty.handler.timeout.WriteTimeoutHandler
320314
*/
321315
TerminalClientConfigurationBuilder withSocketTimeout(Duration timeout);
322316

src/main/java/org/springframework/data/elasticsearch/config/EnableElasticsearchAuditing.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
boolean modifyOnCreate() default true;
5656

5757
/**
58-
* Configures a {@link DateTimeProvider} bean name that allows customizing the {@link org.joda.time.DateTime} to be
58+
* Configures a {@link DateTimeProvider} bean name that allows customizing the date and time to be
5959
* used for setting creation and modification dates.
6060
*/
6161
String dateTimeProviderRef() default "";

src/main/java/org/springframework/data/elasticsearch/config/EnableReactiveElasticsearchAuditing.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
boolean modifyOnCreate() default true;
5656

5757
/**
58-
* Configures a {@link DateTimeProvider} bean name that allows customizing the {@link org.joda.time.DateTime} to be
59-
* used for setting creation and modification dates.
58+
* Configures a {@link DateTimeProvider} bean name that allows customizing the date and time to be used for setting
59+
* creation and modification dates.
6060
*/
6161
String dateTimeProviderRef() default "";
6262
}

0 commit comments

Comments
 (0)