generated

Kubernetes-commit: 369314959c1bf096c1d3502f10b28a00c3d12691
This commit is contained in:
Chao Xu 2019-05-24 17:46:39 -07:00 committed by Kubernetes Publisher
parent ee0fa8a6f6
commit 597a3c0528

View File

@ -56,7 +56,7 @@ func (in *Foo) DeepCopyObject() runtime.Object {
func (in *FooList) DeepCopyInto(out *FooList) {
*out = *in
out.TypeMeta = in.TypeMeta
out.ListMeta = in.ListMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]Foo, len(*in))