You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by sp-ota <ot...@future.co.jp> on 2001/09/03 07:02:59 UTC

[PATCH] pvcs

1. Bug fix
    the orignal version failed to create directories before fetching files.
2. IO bound process to CPU bound process
    the orignal used mkdirs() for each entry of returned file list. Instead,
use Hashtable
to eliminate possible path to create and reduce the number of mkdirs()
calls.
3. Removed unused code.

Hiro