updating classes for compile

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@358196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Edwin L. Punzalan 2005-12-21 03:28:31 +00:00
parent 99757aa343
commit 79a092fb4b
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public class DefaultRepositoryIndexerFactory
{
Map indexerMap = new HashMap();
public RepositoryIndexer getRepositoryIndexer( ArtifactRepository repository, Class indexType )
public RepositoryIndexer getRepositoryIndexer( String indexPath, ArtifactRepository repository, Class indexType )
{
if ( !indexerMap.containsKey( indexType ) )
{
@ -39,7 +39,7 @@ public class DefaultRepositoryIndexerFactory
if ( Artifact.class == indexType )
{
indexer = new ArtifactRepositoryIndexer( );
indexer = new ArtifactRepositoryIndexer( repository, indexPath );
}
else
{

View File

@ -27,5 +27,5 @@ public interface RepositoryIndexerFactory
{
String ROLE = RepositoryIndexerFactory.class.getName();
RepositoryIndexer getRepositoryIndexer( ArtifactRepository repository, Class indexType );
RepositoryIndexer getRepositoryIndexer( String indexPath, ArtifactRepository repository, Class indexType );
}