mirror of https://github.com/kubernetes/kops.git
Remove unneeded nil checks as in requested changes
This commit is contained in:
parent
46a8a00adc
commit
31c8b10453
|
|
@ -32,9 +32,6 @@ func StringValue(s *string) string {
|
||||||
|
|
||||||
//StringSliceValue takes a slice of string pointers and returns a slice of strings
|
//StringSliceValue takes a slice of string pointers and returns a slice of strings
|
||||||
func StringSliceValue(stringSlice []*string) []string {
|
func StringSliceValue(stringSlice []*string) []string {
|
||||||
if stringSlice == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
var newSlice []string
|
var newSlice []string
|
||||||
for _, value := range stringSlice {
|
for _, value := range stringSlice {
|
||||||
if value != nil {
|
if value != nil {
|
||||||
|
|
@ -59,9 +56,6 @@ func String(s string) *string {
|
||||||
|
|
||||||
// StringSlice is a helper that builds a []*string from a slice of strings
|
// StringSlice is a helper that builds a []*string from a slice of strings
|
||||||
func StringSlice(stringSlice []string) []*string {
|
func StringSlice(stringSlice []string) []*string {
|
||||||
if stringSlice == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
var newSlice []*string
|
var newSlice []*string
|
||||||
for i := range stringSlice {
|
for i := range stringSlice {
|
||||||
newSlice = append(newSlice, &stringSlice[i])
|
newSlice = append(newSlice, &stringSlice[i])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue