From d79ee521e13abcb83b7684fc901907303e3a68ad Mon Sep 17 00:00:00 2001 From: Martin Oberhuber Date: Mon, 4 Dec 2006 10:42:29 +0000 Subject: [PATCH] [cleanup] fix javadoc warnings --- .../eclipse/tm/terminal/internal/telnet/TelnetConnection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.tm.terminal/src/org/eclipse/tm/terminal/internal/telnet/TelnetConnection.java b/org.eclipse.tm.terminal/src/org/eclipse/tm/terminal/internal/telnet/TelnetConnection.java index ec5d3082a35..a5b32c9802c 100644 --- a/org.eclipse.tm.terminal/src/org/eclipse/tm/terminal/internal/telnet/TelnetConnection.java +++ b/org.eclipse.tm.terminal/src/org/eclipse/tm/terminal/internal/telnet/TelnetConnection.java @@ -158,11 +158,11 @@ public class TelnetConnection extends Thread implements TelnetCodes { protected byte[] receivedSubnegotiation = new byte[128]; /** - * This field holds the index into array {@link receivedSubnegotiation} of + * This field holds the index into array {@link #receivedSubnegotiation} of * the next unused byte. This is used by method * {@link #processTelnetProtocol(int)} when the state machine is in states * {@link #STATE_SUBNEGOTIATION_STARTED} and {@link - * STATE_RECEIVING_SUBNEGOTIATION}. + * #STATE_RECEIVING_SUBNEGOTIATION}. */ protected int nextSubnegotiationByteIndex = 0;