Merge pull request #2057 from dgageot/remove-dead-code

Remove dead code
This commit is contained in:
Olivier Gambier 2015-10-22 09:38:22 -07:00
commit 1bfb34afd3
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
package drivers
type DriverOptionsMock struct {
Data map[string]interface{}
}
func (d DriverOptionsMock) String(key string) string {
return d.Data[key].(string)
}
func (d DriverOptionsMock) StringSlice(key string) []string {
return d.Data[key].([]string)
}
func (d DriverOptionsMock) Int(key string) int {
return d.Data[key].(int)
}
func (d DriverOptionsMock) Bool(key string) bool {
return d.Data[key].(bool)
}