Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrozucca committed Oct 25, 2017
1 parent bcea4fa commit e9aca44
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions uuid.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ const dash byte = '-'

// UUID v1/v2 storage.
var (
storageMutex sync.Mutex
storageOnce sync.Once
storageRandomMACAddrMutex sync.Mutex
storageRandomMACAddrOnce sync.Once
epochFunc = unixTimeFunc
clockSequence uint16
lastTime uint64
hardwareAddr [6]byte
posixUID = uint32(os.Getuid())
posixGID = uint32(os.Getgid())
storageMutex sync.Mutex
storageOnce sync.Once
storageRandomMACAddrMutex sync.Mutex
storageRandomMACAddrOnce sync.Once
epochFunc = unixTimeFunc
clockSequence uint16
lastTime uint64
hardwareAddr [6]byte
posixUID = uint32(os.Getuid())
posixGID = uint32(os.Getgid())
)

// String parse helpers.
Expand Down
2 changes: 1 addition & 1 deletion uuid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ package uuid

import (
"bytes"
"testing"
"net"
"testing"
)

func TestBytes(t *testing.T) {
Expand Down

0 comments on commit e9aca44

Please sign in to comment.