(XdsClientPoolFactory xdsClientPoolFactory)
| 64 | private final CsdsServiceInternal delegate = new CsdsServiceInternal(); |
| 65 | |
| 66 | @VisibleForTesting |
| 67 | CsdsService(XdsClientPoolFactory xdsClientPoolFactory) { |
| 68 | this.xdsClientPoolFactory = checkNotNull(xdsClientPoolFactory, "xdsClientPoolProvider"); |
| 69 | } |
| 70 | |
| 71 | private CsdsService() { |
| 72 | this(SharedXdsClientPoolProvider.getDefaultProvider()); |
nothing calls this directly
no test coverage detected