Merge pull request #27501 from aaronlehmann/remove-resolveindex

registry: Remove unused method ResolveIndex
This commit is contained in:
Sebastiaan van Stijn 2016-10-19 00:30:55 -07:00 committed by GitHub
commit f11a588d75
1 changed files with 0 additions and 6 deletions

View File

@ -27,7 +27,6 @@ type Service interface {
LookupPullEndpoints(hostname string) (endpoints []APIEndpoint, err error)
LookupPushEndpoints(hostname string) (endpoints []APIEndpoint, err error)
ResolveRepository(name reference.Named) (*RepositoryInfo, error)
ResolveIndex(name string) (*registrytypes.IndexInfo, error)
Search(ctx context.Context, term string, limit int, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error)
ServiceConfig() *registrytypes.ServiceConfig
TLSConfig(hostname string) (*tls.Config, error)
@ -189,11 +188,6 @@ func (s *DefaultService) ResolveRepository(name reference.Named) (*RepositoryInf
return newRepositoryInfo(s.config, name)
}
// ResolveIndex takes indexName and returns index info
func (s *DefaultService) ResolveIndex(name string) (*registrytypes.IndexInfo, error) {
return newIndexInfo(s.config, name)
}
// APIEndpoint represents a remote API endpoint
type APIEndpoint struct {
Mirror bool