mirror of https://github.com/apache/archiva.git
fix NPE
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@506300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
45038c7c56
commit
e96b05deb6
|
@ -169,7 +169,7 @@
|
||||||
for ( java.util.Iterator i = getRepositories().iterator(); i.hasNext(); )
|
for ( java.util.Iterator i = getRepositories().iterator(); i.hasNext(); )
|
||||||
{
|
{
|
||||||
RepositoryConfiguration repository = (RepositoryConfiguration) i.next();
|
RepositoryConfiguration repository = (RepositoryConfiguration) i.next();
|
||||||
if ( id.equals( repository.getId() ) )
|
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
|
||||||
{
|
{
|
||||||
return repository;
|
return repository;
|
||||||
}
|
}
|
||||||
|
@ -182,7 +182,7 @@
|
||||||
for ( java.util.Iterator i = getSyncedRepositories().iterator(); i.hasNext(); )
|
for ( java.util.Iterator i = getSyncedRepositories().iterator(); i.hasNext(); )
|
||||||
{
|
{
|
||||||
SyncedRepositoryConfiguration repository = (SyncedRepositoryConfiguration) i.next();
|
SyncedRepositoryConfiguration repository = (SyncedRepositoryConfiguration) i.next();
|
||||||
if ( id.equals( repository.getId() ) )
|
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
|
||||||
{
|
{
|
||||||
return repository;
|
return repository;
|
||||||
}
|
}
|
||||||
|
@ -195,7 +195,7 @@
|
||||||
for ( java.util.Iterator i = getProxiedRepositories().iterator(); i.hasNext(); )
|
for ( java.util.Iterator i = getProxiedRepositories().iterator(); i.hasNext(); )
|
||||||
{
|
{
|
||||||
ProxiedRepositoryConfiguration repository = (ProxiedRepositoryConfiguration) i.next();
|
ProxiedRepositoryConfiguration repository = (ProxiedRepositoryConfiguration) i.next();
|
||||||
if ( id.equals( repository.getId() ) )
|
if ( id != null ? !id.equals( repository.getId() ) : repository.getId() != null )
|
||||||
{
|
{
|
||||||
return repository;
|
return repository;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue