git-lfs/tools/kv
Kazuki MATSUDA / 松田一樹 4bc322352f
NON-ISSUE Update deprecated SEEK_SET, SEEK_CUR usage.
os.SEEK_XXX is not deprecated and we can use io.SeekXxx instead.

https://golang.org/pkg/os/#pkg-constants

```go
// Seek whence values.
//
// Deprecated: Use io.SeekStart, io.SeekCurrent, and io.SeekEnd.
const (
	SEEK_SET int = 0 // seek relative to the origin of the file
	SEEK_CUR int = 1 // seek relative to the current offset
	SEEK_END int = 2 // seek relative to the end
)
```

https://golang.org/pkg/io/#pkg-constants

```go
// Seek whence values.
const (
	SeekStart   = 0 // seek relative to the origin of the file
	SeekCurrent = 1 // seek relative to the current offset
	SeekEnd     = 2 // seek relative to the end
)
```
2019-07-27 12:48:42 +09:00
..
keyvaluestore_test.go Add RemoveAll and Visit functions to kv store 2016-12-12 10:26:12 +00:00
keyvaluestore.go NON-ISSUE Update deprecated SEEK_SET, SEEK_CUR usage. 2019-07-27 12:48:42 +09:00