mirror of
https://github.com/rclone/rclone.git
synced 2026-01-06 02:23:24 +00:00
configmap: add ClearSetters to get rid of all setters #5178
This commit is contained in:
@@ -60,6 +60,12 @@ func (c *Map) AddSetter(setter Setter) *Map {
|
||||
return c
|
||||
}
|
||||
|
||||
// ClearSetters removes all the setters set so far
|
||||
func (c *Map) ClearSetters() *Map {
|
||||
c.setters = nil
|
||||
return c
|
||||
}
|
||||
|
||||
// get gets an item with the key passed in and return the value from
|
||||
// the first getter. If the item is found then it returns true,
|
||||
// otherwise false.
|
||||
|
||||
Reference in New Issue
Block a user