*** PRIVATE ***
| 78 | // *** PRIVATE *** |
| 79 | |
| 80 | type objectData struct { |
| 81 | name string |
| 82 | data []byte |
| 83 | } |
| 84 | |
| 85 | func newObjectData(name string, data []byte) *objectData { |
| 86 | return &objectData{ |
nothing calls this directly
no outgoing calls
no test coverage detected