summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go')
-rw-r--r--vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go b/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
deleted file mode 100644
index 827ac6f1e..000000000
--- a/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package testhelper
-
-import (
- "runtime"
- "strings"
-)
-
-// Converts the line endings when on Windows
-func Unix2dos(unix string) string {
- if runtime.GOOS != "windows" {
- return unix
- }
-
- return strings.Replace(unix, "\n", "\r\n", -1)
-}