aboutsummaryrefslogtreecommitdiff
path: root/vendor/honnef.co/go/tools/version
diff options
context:
space:
mode:
authorJoe Richey joerichey@google.com <joerichey@google.com>2018-08-30 02:24:33 -0700
committerJoe Richey joerichey@google.com <joerichey@google.com>2018-08-30 02:24:33 -0700
commit630c8d1d002286cc26bafec78a7f120b5c0e78af (patch)
tree5d453c5b099a2881c74ac49922eb968e235bedfd /vendor/honnef.co/go/tools/version
parentb7f5b0ab3c9b1af9397c557e410473119399f8b6 (diff)
Update dependancies to lastest version
Diffstat (limited to 'vendor/honnef.co/go/tools/version')
-rw-r--r--vendor/honnef.co/go/tools/version/version.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/honnef.co/go/tools/version/version.go b/vendor/honnef.co/go/tools/version/version.go
deleted file mode 100644
index 9536482..0000000
--- a/vendor/honnef.co/go/tools/version/version.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package version
-
-import (
- "fmt"
- "os"
- "path/filepath"
-)
-
-const Version = "2017.2.2"
-
-func Print() {
- if Version == "devel" {
- fmt.Printf("%s (no version)\n", filepath.Base(os.Args[0]))
- } else {
- fmt.Printf("%s %s\n", filepath.Base(os.Args[0]), Version)
- }
-}