From dfdbb5f69ec1264c001be6956dd9966e511db3ba Mon Sep 17 00:00:00 2001 From: Iwein Fuld Date: Fri, 11 Jun 2010 15:17:35 +0000 Subject: [PATCH] QUALITY: renamed @param to avoid javadoc warning in build --- .../org/springframework/integration/ip/tcp/SocketWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/SocketWriter.java b/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/SocketWriter.java index 8168979b95..1914a4a643 100644 --- a/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/SocketWriter.java +++ b/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/SocketWriter.java @@ -30,7 +30,7 @@ public interface SocketWriter { * Write the entire buffer to the underlying socket. Appropriate wire * protocols will be implemented so the receiving side can decode and * reassemble the message, if packetized by the network. - * @param bytes The bytes to write. + * @param object The object to write. * @throws IOException */ void write(Object object) throws IOException;