aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/google/uuid/version4.go
diff options
context:
space:
mode:
authorale <ale@incal.net>2021-06-19 16:43:43 +0100
committerale <ale@incal.net>2021-06-19 16:43:43 +0100
commit833da3f33a5c727a8d7ccd034c43497c66793026 (patch)
tree2963588cf4fc88f77a39f2a4ab535a5bb44756a9 /vendor/github.com/google/uuid/version4.go
parenta3019b1703b29e74cfb8fd71b9f79b0c1da11395 (diff)
downloadcrawl-833da3f33a5c727a8d7ccd034c43497c66793026.tar.gz
crawl-833da3f33a5c727a8d7ccd034c43497c66793026.zip
go mod vendor
Diffstat (limited to 'vendor/github.com/google/uuid/version4.go')
-rw-r--r--vendor/github.com/google/uuid/version4.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/vendor/github.com/google/uuid/version4.go b/vendor/github.com/google/uuid/version4.go
index 9ad1aba..84af91c 100644
--- a/vendor/github.com/google/uuid/version4.go
+++ b/vendor/github.com/google/uuid/version4.go
@@ -27,12 +27,8 @@ func New() UUID {
// equivalent to the odds of creating a few tens of trillions of UUIDs in a
// year and having one duplicate.
func NewRandom() (UUID, error) {
- return NewRandomFromReader(rander)
-}
-
-func NewRandomFromReader(r io.Reader) (UUID, error) {
var uuid UUID
- _, err := io.ReadFull(r, uuid[:])
+ _, err := io.ReadFull(rander, uuid[:])
if err != nil {
return Nil, err
}
@@ -40,4 +36,3 @@ func NewRandomFromReader(r io.Reader) (UUID, error) {
uuid[8] = (uuid[8] & 0x3f) | 0x80 // Variant is 10
return uuid, nil
}
-