1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-27 02:45:32 +02:00

[cleanup] fix javadoc warnings

This commit is contained in:
Martin Oberhuber 2006-12-04 10:42:29 +00:00
parent 2e8951426c
commit d79ee521e1

View file

@ -158,11 +158,11 @@ public class TelnetConnection extends Thread implements TelnetCodes {
protected byte[] receivedSubnegotiation = new byte[128]; 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 * the next unused byte. This is used by method
* {@link #processTelnetProtocol(int)} when the state machine is in states * {@link #processTelnetProtocol(int)} when the state machine is in states
* {@link #STATE_SUBNEGOTIATION_STARTED} and {@link * {@link #STATE_SUBNEGOTIATION_STARTED} and {@link
* STATE_RECEIVING_SUBNEGOTIATION}. * #STATE_RECEIVING_SUBNEGOTIATION}.
*/ */
protected int nextSubnegotiationByteIndex = 0; protected int nextSubnegotiationByteIndex = 0;