From 118686739e33ff6d20fa17fa5c1877dd05658a20 Mon Sep 17 00:00:00 2001 From: chenzhiguo5 Date: Mon, 13 May 2024 14:25:09 +0800 Subject: [PATCH] Fix compile check issue --- .../live/agent/governance/invoke/cluster/LiveCluster.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/joylive-core/joylive-governance-api/src/main/java/com/jd/live/agent/governance/invoke/cluster/LiveCluster.java b/joylive-core/joylive-governance-api/src/main/java/com/jd/live/agent/governance/invoke/cluster/LiveCluster.java index c5175ddc..b93402f5 100644 --- a/joylive-core/joylive-governance-api/src/main/java/com/jd/live/agent/governance/invoke/cluster/LiveCluster.java +++ b/joylive-core/joylive-governance-api/src/main/java/com/jd/live/agent/governance/invoke/cluster/LiveCluster.java @@ -96,7 +96,7 @@ default ClusterPolicy getDefaultPolicy(R request) { * necessary for the current invocation process. This includes metadata, * configuration settings, and potentially references to other relevant * components within the system. - * @param invocation The {@link OutboundInvocation} defining the outbound invocation logic. + * @param invocation The {@link OutboundInvocation}<R> defining the outbound invocation logic. * This parameter specifies how the request should be executed, including * the selection of endpoints, serialization of the request, and handling * of responses. @@ -105,8 +105,8 @@ default ClusterPolicy getDefaultPolicy(R request) { * determined based on the current state of the cluster and the applicable * routing policies. * @return An outbound response of type {@code O}, corresponding to the executed request. - * The response type is generic and can be adapted based on the specific needs of - * the implementation. + * The response type is generic and can be adapted based on the specific needs of + * the implementation. * @throws T If an error occurs during the execution of the request. The specific type of * exception {@code T} is defined by the type parameter, allowing for flexibility * in error handling and enabling the method to throw exceptions that are meaningful