Patch is an implementation of fdiff.Patch interface
| 113 | |
| 114 | // Patch is an implementation of fdiff.Patch interface |
| 115 | type Patch struct { |
| 116 | message string |
| 117 | filePatches []fdiff.FilePatch |
| 118 | } |
| 119 | |
| 120 | func (p *Patch) FilePatches() []fdiff.FilePatch { |
| 121 | return p.filePatches |
nothing calls this directly
no outgoing calls
no test coverage detected