()
| 71 | } |
| 72 | |
| 73 | func (d *Document) GetContent() string { |
| 74 | d.mu.RLock() |
| 75 | defer d.mu.RUnlock() |
| 76 | return d.Content |
| 77 | } |
| 78 | |
| 79 | func (d *Document) SetContent(content string) { |
| 80 | d.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected