From 3de1317c15b54725b1caacdc66700ce50b9c62c2 Mon Sep 17 00:00:00 2001 From: Sam Ghods Date: Fri, 3 Oct 2014 17:57:48 -0700 Subject: [PATCH] Remove JSONBase reference from v1beta3/types.go --- pkg/api/v1beta3/types.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/api/v1beta3/types.go b/pkg/api/v1beta3/types.go index b5249e91c1a..b02b5a41561 100644 --- a/pkg/api/v1beta3/types.go +++ b/pkg/api/v1beta3/types.go @@ -836,8 +836,9 @@ type Event struct { // EventList is a list of events. type EventList struct { - JSONBase `json:",inline" yaml:",inline"` - Items []Event `json:"items" yaml:"items"` + TypeMeta `json:",inline" yaml:",inline"` + Metadata ListMeta `json:"metadata,inline" yaml:"metadata,inline"` + Items []Event `json:"items" yaml:"items"` } // TODO: for readability