summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/types/code_location.go
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2020-12-02 09:24:47 -0500
committerReinhard Tartler <siretart@tauware.de>2020-12-02 09:24:58 -0500
commit29cc1453eab24cbbfcdd21b9b86a36ff3183a840 (patch)
tree6a8ea32fea737936384e95e2ba2109dfc373697c /vendor/github.com/onsi/ginkgo/types/code_location.go
parent8086b728c2d5c06e05010693cdbe64e972a31128 (diff)
delete vendor tree
Diffstat (limited to 'vendor/github.com/onsi/ginkgo/types/code_location.go')
-rw-r--r--vendor/github.com/onsi/ginkgo/types/code_location.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/onsi/ginkgo/types/code_location.go b/vendor/github.com/onsi/ginkgo/types/code_location.go
deleted file mode 100644
index 935a89e..0000000
--- a/vendor/github.com/onsi/ginkgo/types/code_location.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package types
-
-import (
- "fmt"
-)
-
-type CodeLocation struct {
- FileName string
- LineNumber int
- FullStackTrace string
-}
-
-func (codeLocation CodeLocation) String() string {
- return fmt.Sprintf("%s:%d", codeLocation.FileName, codeLocation.LineNumber)
-}