Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [stellation-res] Bug 23885 Files.findFileInfo()

On Fri, Sep 20, 2002 at 05:24:23PM -0400, Jonathan Gossage wrote:
> 
> Currently, findFileInfo() runs in a non-platform specific context via
> updateFileInfo() whenever a "add", "clean", "move", or "synchronize" command
> is executed. It is also invoked in a platform independent context via
> needFileInfo() from isWorkspaceDirectory().
> 

Here's new code for updateFileInfo:
    public void updateFileInfo() throws IOException {
	if (_useJavaFile) return; // Nothing to do if java.io.File adequate.
        findUnixFileInfo();
        _haveFileInfo = true;
    }

dave


Back to the top