Drop unnecessary type conversions

This commit is contained in:
ferhat elmas 2017-12-18 09:14:03 +01:00 committed by Traefiker
parent f6520727a3
commit 705f3f1372
8 changed files with 16 additions and 16 deletions

View file

@ -21,12 +21,12 @@ func (ns *Namespaces) Set(str string) error {
}
//Get []string
func (ns *Namespaces) Get() interface{} { return Namespaces(*ns) }
func (ns *Namespaces) Get() interface{} { return *ns }
//String return slice in a string
func (ns *Namespaces) String() string { return fmt.Sprintf("%v", *ns) }
//SetValue sets []string into the parser
func (ns *Namespaces) SetValue(val interface{}) {
*ns = Namespaces(val.(Namespaces))
*ns = val.(Namespaces)
}