Update generated files

Kubernetes-commit: 1208437f84304ef4f73a6bf1770786bb436b75c9
This commit is contained in:
Dr. Stefan Schimanski 2018-06-13 09:53:47 +02:00 committed by Kubernetes Publisher
parent b31118a167
commit 901a363473

View File

@ -90,12 +90,8 @@ func (in *FooSpec) DeepCopyInto(out *FooSpec) {
*out = *in
if in.Replicas != nil {
in, out := &in.Replicas, &out.Replicas
if *in == nil {
*out = nil
} else {
*out = new(int32)
**out = **in
}
*out = new(int32)
**out = **in
}
return
}