From 90bc65bbd2d15b71233d66b416a3676a7bbb112c Mon Sep 17 00:00:00 2001 From: RinkiyaKeDad Date: Tue, 25 May 2021 12:08:25 +0530 Subject: [PATCH] deleted framework.go Signed-off-by: RinkiyaKeDad --- test/e2e/framework/config/framework.go | 32 -------------------------- 1 file changed, 32 deletions(-) delete mode 100644 test/e2e/framework/config/framework.go diff --git a/test/e2e/framework/config/framework.go b/test/e2e/framework/config/framework.go deleted file mode 100644 index 5040ee8ef..000000000 --- a/test/e2e/framework/config/framework.go +++ /dev/null @@ -1,32 +0,0 @@ -/* -Copyright 2020 The cert-manager Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package config - -import ( - "flag" -) - -type Framework struct { -} - -func (f *Framework) AddFlags(fs *flag.FlagSet) { - -} - -func (c *Framework) Validate() []error { - return nil -}