git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@506300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2007-02-12 05:55:51 +00:00
parent 45038c7c56
commit e96b05deb6
1 changed files with 3 additions and 3 deletions

View File

@ -169,7 +169,7 @@
for ( java.util.Iterator i = getRepositories().iterator(); i.hasNext(); )
{
RepositoryConfiguration repository = (RepositoryConfiguration) i.next();
if ( id.equals( repository.getId() ) )
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
{
return repository;
}
@ -182,7 +182,7 @@
for ( java.util.Iterator i = getSyncedRepositories().iterator(); i.hasNext(); )
{
SyncedRepositoryConfiguration repository = (SyncedRepositoryConfiguration) i.next();
if ( id.equals( repository.getId() ) )
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
{
return repository;
}
@ -195,7 +195,7 @@
for ( java.util.Iterator i = getProxiedRepositories().iterator(); i.hasNext(); )
{
ProxiedRepositoryConfiguration repository = (ProxiedRepositoryConfiguration) i.next();
if ( id.equals( repository.getId() ) )
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
{
return repository;
}