Skip to content

Commit 532461e

Browse files
authored
[fix] fix java doc (#6008)
1 parent d5acd11 commit 532461e

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
/**
2727
* Custom retry policy.
2828
* Also please achieve your own
29-
*@Date 2025/3/23 14:27
3029
*/
3130
public class CustomRetryStrategy<R> implements RetryStrategy<R> {
3231
private static final Logger LOG = LoggerFactory.getLogger(CustomRetryStrategy.class);

shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
* Default Retry Policy Class
5050
* Keep the original default request retry test without any changes.
5151
* @param <R> Request Response Type
52-
* @Date 2025/3/23 08:36
5352
*/
5453
public class DefaultRetryStrategy<R> implements RetryStrategy<R> {
5554
private static final Logger LOG = LoggerFactory.getLogger(DefaultRetryStrategy.class);

shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* Exponential Retry Backoff Strategy.
3131
*
32-
* @Date 2025/3/23 14:20
3332
*/
3433
public class ExponentialRetryBackoffStrategy<R> implements RetryStrategy<R> {
3534
private static final Logger LOG = LoggerFactory.getLogger(ExponentialRetryBackoffStrategy.class);

shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
/**
2929
* Fixed Retry Policy Class.
3030
*
31-
* @Date 2025/3/23 10:04
3231
*/
3332
public class FixedRetryStrategy<R> implements RetryStrategy<R> {
3433
private static final Logger LOG = LoggerFactory.getLogger(FixedRetryStrategy.class);

shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
/**
2727
* Retry Policy Interface.
2828
* @param <R> Request Response Type
29-
*@Date 2025/3/23 08:27
3029
*/
3130
public interface RetryStrategy<R> {
3231
/**

0 commit comments

Comments
 (0)