summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/copystructure/copier_time.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/copystructure/copier_time.go')
-rw-r--r--vendor/github.com/mitchellh/copystructure/copier_time.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/mitchellh/copystructure/copier_time.go b/vendor/github.com/mitchellh/copystructure/copier_time.go
deleted file mode 100644
index db6a6aa1a..000000000
--- a/vendor/github.com/mitchellh/copystructure/copier_time.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package copystructure
-
-import (
- "reflect"
- "time"
-)
-
-func init() {
- Copiers[reflect.TypeOf(time.Time{})] = timeCopier
-}
-
-func timeCopier(v interface{}) (interface{}, error) {
- // Just... copy it.
- return v.(time.Time), nil
-}