mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
chore: remove dead code (#6395)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
07b350166f
commit
c279d2f495
1 changed files with 0 additions and 14 deletions
|
@ -22,13 +22,6 @@ func AddResource(ctx Interface, dataRaw []byte) error {
|
|||
return ctx.AddResource(data)
|
||||
}
|
||||
|
||||
func ReplaceResource(ctx Interface, data map[string]interface{}) error {
|
||||
if err := ctx.AddResource(nil); err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.AddResource(data)
|
||||
}
|
||||
|
||||
func AddOldResource(ctx Interface, dataRaw []byte) error {
|
||||
var data map[string]interface{}
|
||||
if err := json.Unmarshal(dataRaw, &data); err != nil {
|
||||
|
@ -38,13 +31,6 @@ func AddOldResource(ctx Interface, dataRaw []byte) error {
|
|||
return ctx.AddOldResource(data)
|
||||
}
|
||||
|
||||
func ReplaceOldResource(ctx Interface, data map[string]interface{}) error {
|
||||
if err := ctx.AddOldResource(nil); err != nil {
|
||||
return err
|
||||
}
|
||||
return ctx.AddOldResource(data)
|
||||
}
|
||||
|
||||
func addToContext(ctx *context, data interface{}, tags ...string) error {
|
||||
dataRaw, err := json.Marshal(push(data, tags...))
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Reference in a new issue