diff --git a/src/main/cluster-detectors/distribution-detector.ts b/src/main/cluster-detectors/distribution-detector.ts index c29c9df139..be0cadb1bd 100644 --- a/src/main/cluster-detectors/distribution-detector.ts +++ b/src/main/cluster-detectors/distribution-detector.ts @@ -60,10 +60,6 @@ export class DistributionDetector extends BaseClusterDetector { return { value: "custom", accuracy: 10}; } - if (this.isCustom()) { - return { value: "custom", accuracy: 10}; - } - if (await this.isOpenshift()) { return { value: "openshift", accuracy: 90}; }