From 26fc6910859827e3665b136c933f7f72e2a7ceed Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Mon, 1 Dec 2014 15:08:33 -0700 Subject: [PATCH] temporarily disable javadocs --- pom.xml | 2 ++ .../cloud/client/loadbalancer/LoadBalancerClient.java | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 85bd28f8..58b5caac 100644 --- a/pom.xml +++ b/pom.xml @@ -72,6 +72,8 @@ + + true diff --git a/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java b/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java index 23485714..40c22fd4 100644 --- a/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java +++ b/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java @@ -7,14 +7,14 @@ import org.springframework.cloud.client.ServiceInstance; */ public interface LoadBalancerClient { /** - * Choose a {@see ServiceInstance} from the LoadBalancer for the specified service + * Choose a ServiceInstance from the LoadBalancer for the specified service * @param serviceId the service id to look up the LoadBalancer * @return a ServiceInstance that matches the serviceId */ public ServiceInstance choose(String serviceId); /** - * Choose a {@see ServiceInstance} from the LoadBalancer for the specified service + * Choose a ServiceInstance from the LoadBalancer for the specified service * @param serviceId the service id to look up the LoadBalancer * @param request allows implementations to execute pre and post actions such as incrementing metrics * @return the result of the LoadBalancerRequest callback on the selected ServiceInstance