From fc267877a4385ccc0109453e61110ea5587fec7b Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Fri, 4 Dec 2020 16:37:23 +0200 Subject: [PATCH] cleanup Signed-off-by: Jari Kolehmainen --- src/main/cluster-detectors/distribution-detector.ts | 4 ---- 1 file changed, 4 deletions(-) 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}; }