aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/windows/env_unset.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey94@gmail.com>2018-02-11 20:28:41 -0800
committerJoseph Richey <joerichey94@gmail.com>2018-02-11 20:28:41 -0800
commitefeda626da382177d5f1f0439b6e62b663a216a9 (patch)
treec2660fa89e96838bc2c81189e57dc792434ec9b0 /vendor/golang.org/x/sys/windows/env_unset.go
parent3634a7bb931862ada0bc1c4357303d7ce18e7c20 (diff)
vendor: update vendored dependancies
This change updates dependancies to be consistent with Gopkg.toml. This change was generated by running "dep ensure".
Diffstat (limited to 'vendor/golang.org/x/sys/windows/env_unset.go')
-rw-r--r--vendor/golang.org/x/sys/windows/env_unset.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/golang.org/x/sys/windows/env_unset.go b/vendor/golang.org/x/sys/windows/env_unset.go
deleted file mode 100644
index 4ed03ae..0000000
--- a/vendor/golang.org/x/sys/windows/env_unset.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2014 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build windows
-// +build go1.4
-
-package windows
-
-import "syscall"
-
-func Unsetenv(key string) error {
- // This was added in Go 1.4.
- return syscall.Unsetenv(key)
-}