Tim Funk wrote:
Dumb question. (More of a curiosity since I see this a lot)

Is there a reason to use:
java.io.File fd =
   new java.io.File(paths[j] +
                    System.getProperty("file.separator") + name);

Instead of
java.io.File fd = new java.io.File(paths[j], name);

You are right there are no reason to use the first one instead the second. Thanks for the review.

Cheers


Jean-Frederic



-Tim

[EMAIL PROTECTED] wrote:
Author: jfclere
Date: Tue Jun 24 05:26:55 2008
New Revision: 671153

URL: http://svn.apache.org/viewvc?rev=671153&view=rev
<SNIP>
+ java.io.File fd = new java.io.File(paths[j] + System.getProperty("file.separator") + name);



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to