This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Socket timeout patch


>>>+  // 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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]