Update generated code

Kubernetes-commit: 1e79dfb959896f2e51be87ecef491452bd17724c
This commit is contained in:
Dr. Stefan Schimanski
2017-11-09 12:27:20 +01:00
committed by Kubernetes Publisher
parent 693567fbcc
commit 834a79b0f6
7 changed files with 0 additions and 141 deletions

View File

@@ -20,23 +20,6 @@ limitations under the License.
package rest
import (
conversion "k8s.io/apimachinery/pkg/conversion"
reflect "reflect"
)
// GetGeneratedDeepCopyFuncs returns the generated funcs, since we aren't registering them.
//
// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented.
func GetGeneratedDeepCopyFuncs() []conversion.GeneratedDeepCopyFunc {
return []conversion.GeneratedDeepCopyFunc{
{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
in.(*TLSClientConfig).DeepCopyInto(out.(*TLSClientConfig))
return nil
}, InType: reflect.TypeOf(&TLSClientConfig{})},
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TLSClientConfig) DeepCopyInto(out *TLSClientConfig) {
*out = *in