| 12 | } |
| 13 | |
| 14 | type MutableCondition struct { |
| 15 | satisfied bool |
| 16 | changedPublisher EventPublisher |
| 17 | } |
| 18 | |
| 19 | func NewMutableCondition() *MutableCondition { |
| 20 | return new(MutableCondition) |
nothing calls this directly
no outgoing calls
no test coverage detected