(src *bool)
| 2935 | } |
| 2936 | |
| 2937 | func cloneBoolPtr(src *bool) *bool { |
| 2938 | if src == nil { |
| 2939 | return nil |
| 2940 | } |
| 2941 | value := *src |
| 2942 | return &value |
| 2943 | } |
| 2944 | |
| 2945 | func resourceKindsToStrings(values []resources.ResourceKind) []string { |
| 2946 | if len(values) == 0 { |
no outgoing calls
no test coverage detected