From 8e4b62a74bc789e62ac28f54731826f12e752380 Mon Sep 17 00:00:00 2001 From: choury Date: Thu, 5 Jul 2018 11:07:56 +0800 Subject: [PATCH] Remove duplicate check line There is a same [line](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/cm/cpumanager/policy_static.go#L81). --- pkg/kubelet/cm/cpumanager/policy_static.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/kubelet/cm/cpumanager/policy_static.go b/pkg/kubelet/cm/cpumanager/policy_static.go index 9a461bacb63..58996d18b13 100644 --- a/pkg/kubelet/cm/cpumanager/policy_static.go +++ b/pkg/kubelet/cm/cpumanager/policy_static.go @@ -30,8 +30,6 @@ import ( // PolicyStatic is the name of the static policy const PolicyStatic policyName = "static" -var _ Policy = &staticPolicy{} - // staticPolicy is a CPU manager policy that does not change CPU // assignments for exclusively pinned guaranteed containers after the main // container process starts.