{
@SuppressWarnings( "unchecked" )
List<File> realFiles = FileUtils.getFiles( fileSet.getBasedir(), null, "_ccmwaid.inf" );
for ( File f : realFiles )
{
files.add( new ScmFile( f.getPath(), ScmFileStatus.CHECKED_OUT ) );
}
}
catch ( IOException e )
{
throw new ScmException( "Unable to list files in checkout directory", e );