This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Socket timeout patch
- From: Per Bothner <per at bothner dot com>
- To: Nic Ferrier <nferrier at tf1 dot tapsellferrier dot co dot uk>
- Cc: java-patches at gcc dot gnu dot org
- Date: Sat, 15 Dec 2001 21:38:17 -0800
- Subject: Re: Socket timeout patch
- References: <E16FQO1-0005Tp-00@tf1.tapsellferrier.co.uk>
>>>+ // Stream handling.
>>>+
>>>+ /** a cached copy of the in stream.
>>>+ */
>>>+ private InputStream in=null;
>>>+
>>>+ /** a cached copy of the out stream.
>>>+ */
>>>+ private OutputStream out=null;
>>>
>>Javadocs need to start on second line and start with capital letter.
Personally, I think if the comment is a single line, I'd prefer
not blowing it up to three lines:
/** A cached copy of the out stream. */
private OutputStream out=null;
But then I tend to prefer compact screen layouts. I absolutely
dispise having long lines containing nothing but asterisks, for example.
--
--Per Bothner
per@bothner.com http://www.bothner.com/per/