Skip to content

Commit

Permalink
Generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
simo5 committed Jan 3, 2018
1 parent 59a803b commit aa34658
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
7 changes: 3 additions & 4 deletions pkg/apps/generated/informers/internalversion/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
package internalversion

import (
reflect "reflect"
sync "sync"
time "time"

apps "github.com/openshift/origin/pkg/apps/generated/informers/internalversion/apps"
internalinterfaces "github.com/openshift/origin/pkg/apps/generated/informers/internalversion/internalinterfaces"
internalclientset "github.com/openshift/origin/pkg/apps/generated/internalclientset"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
schema "k8s.io/apimachinery/pkg/runtime/schema"
cache "k8s.io/client-go/tools/cache"
reflect "reflect"
sync "sync"
time "time"
)

type sharedInformerFactory struct {
Expand Down
1 change: 0 additions & 1 deletion pkg/apps/generated/informers/internalversion/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package internalversion

import (
"fmt"

apps "github.com/openshift/origin/pkg/apps/apis/apps"
schema "k8s.io/apimachinery/pkg/runtime/schema"
cache "k8s.io/client-go/tools/cache"
Expand Down
11 changes: 10 additions & 1 deletion pkg/cmd/server/api/v1/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ func (in *OAuthConfig) DeepCopyInto(out *OAuthConfig) {
**out = **in
}
}
out.TokenConfig = in.TokenConfig
in.TokenConfig.DeepCopyInto(&out.TokenConfig)
if in.Templates != nil {
in, out := &in.Templates, &out.Templates
if *in == nil {
Expand Down Expand Up @@ -2134,6 +2134,15 @@ func (in *StringSourceSpec) DeepCopy() *StringSourceSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TokenConfig) DeepCopyInto(out *TokenConfig) {
*out = *in
if in.AccessTokenInactivityTimeoutSeconds != nil {
in, out := &in.AccessTokenInactivityTimeoutSeconds, &out.AccessTokenInactivityTimeoutSeconds
if *in == nil {
*out = nil
} else {
*out = new(int32)
**out = **in
}
}
return
}

Expand Down
11 changes: 10 additions & 1 deletion pkg/cmd/server/api/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1569,7 +1569,7 @@ func (in *OAuthConfig) DeepCopyInto(out *OAuthConfig) {
**out = **in
}
}
out.TokenConfig = in.TokenConfig
in.TokenConfig.DeepCopyInto(&out.TokenConfig)
if in.Templates != nil {
in, out := &in.Templates, &out.Templates
if *in == nil {
Expand Down Expand Up @@ -2123,6 +2123,15 @@ func (in *StringSourceSpec) DeepCopy() *StringSourceSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *TokenConfig) DeepCopyInto(out *TokenConfig) {
*out = *in
if in.AccessTokenInactivityTimeoutSeconds != nil {
in, out := &in.AccessTokenInactivityTimeoutSeconds, &out.AccessTokenInactivityTimeoutSeconds
if *in == nil {
*out = nil
} else {
*out = new(int32)
**out = **in
}
}
return
}

Expand Down

0 comments on commit aa34658

Please sign in to comment.