From acc9004ea7cf05c15d3f9c5a54ab190fa174f64e Mon Sep 17 00:00:00 2001 From: Alejandro Visiedo Date: Wed, 29 Nov 2023 10:41:34 +0100 Subject: [PATCH] fix: linter violation 'not used' Remove the utils.go file as with the current state they are not needed; and this will fix the linter violation in the pipeline. Signed-off-by: Alejandro Visiedo --- util.go | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 util.go diff --git a/util.go b/util.go deleted file mode 100644 index c99e9be..0000000 --- a/util.go +++ /dev/null @@ -1,6 +0,0 @@ -package xrhidgen - -func ptrbool(b bool) *bool { return &b } -func ptrfloat64(f float64) *float64 { return &f } -func ptrstring(s string) *string { return &s } -func ptrslicestring(s []string) *[]string { return &s }