diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2020-07-10 06:15:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 06:15:38 +0200 |
commit | ee580ee459d4eac1c434203cc264523acfae724a (patch) | |
tree | 30b1e5f4788dd6732694494458c5f15a64ddfe66 /plumbing/object/patch.go | |
parent | 13095f770a0ea9be1c103389269fad1d82c55468 (diff) | |
parent | d07f2fbd7f615707c5f8b4bde32d5824c4196411 (diff) | |
download | go-git-ee580ee459d4eac1c434203cc264523acfae724a.tar.gz |
Merge pull request #124 from cristaloleg/use-one-name-for-receiver
*: use only one name for receiver
Diffstat (limited to 'plumbing/object/patch.go')
-rw-r--r-- | plumbing/object/patch.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plumbing/object/patch.go b/plumbing/object/patch.go index 1135a40..9b5f438 100644 --- a/plumbing/object/patch.go +++ b/plumbing/object/patch.go @@ -121,12 +121,12 @@ type Patch struct { filePatches []fdiff.FilePatch } -func (t *Patch) FilePatches() []fdiff.FilePatch { - return t.filePatches +func (p *Patch) FilePatches() []fdiff.FilePatch { + return p.filePatches } -func (t *Patch) Message() string { - return t.message +func (p *Patch) Message() string { + return p.message } func (p *Patch) Encode(w io.Writer) error { @@ -198,12 +198,12 @@ func (tf *textFilePatch) Files() (from fdiff.File, to fdiff.File) { return } -func (t *textFilePatch) IsBinary() bool { - return len(t.chunks) == 0 +func (tf *textFilePatch) IsBinary() bool { + return len(tf.chunks) == 0 } -func (t *textFilePatch) Chunks() []fdiff.Chunk { - return t.chunks +func (tf *textFilePatch) Chunks() []fdiff.Chunk { + return tf.chunks } // textChunk is an implementation of fdiff.Chunk interface |