OSDN Git Service

Thanos did someting
[bytom/vapor.git] / vendor / github.com / hashicorp / hcl / testhelper / unix2dos.go
diff --git a/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go b/vendor/github.com/hashicorp/hcl/testhelper/unix2dos.go
deleted file mode 100644 (file)
index 827ac6f..0000000
+++ /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)
-}