Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ static class NullProxySelector
public Proxy getProxy( RemoteRepository repository )
{
requireNonNull( repository, "repository cannot be null" );
return repository.getProxy();
return null;
}

}
Expand Down Expand Up @@ -844,7 +844,7 @@ static class NullAuthenticationSelector
public Authentication getAuthentication( RemoteRepository repository )
{
requireNonNull( repository, "repository cannot be null" );
return repository.getAuthentication();
return null;
}

}
Expand Down