1
0
Fork 0

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 (c *Clusters) Set(str string) error {
}
// Get Clusters
func (c *Clusters) Get() interface{} { return Clusters(*c) }
func (c *Clusters) Get() interface{} { return *c }
// String return slice in a string
func (c *Clusters) String() string { return fmt.Sprintf("%v", *c) }
// SetValue sets Clusters into the parser
func (c *Clusters) SetValue(val interface{}) {
*c = Clusters(val.(Clusters))
*c = val.(Clusters)
}