add tx-copy-deprecated

pull/87/head
Chyroc 2018-03-01 22:29:23 +08:00 committed by Gyuho Lee
parent 4f5275f4eb
commit 32f8e5fee9
1 changed files with 3 additions and 1 deletions

4
tx.go
View File

@ -303,7 +303,9 @@ func (tx *Tx) close() {
}
// Copy writes the entire database to a writer.
// This function exists for backwards compatibility. Use WriteTo() instead.
// This function exists for backwards compatibility.
//
// Deprecated; Use WriteTo() instead.
func (tx *Tx) Copy(w io.Writer) error {
_, err := tx.WriteTo(w)
return err