(otype string)
| 174 | } |
| 175 | |
| 176 | func getWaveObjDesc(otype string) *waveObjDesc { |
| 177 | desc, _ := waveObjMap.Load(otype) |
| 178 | if desc == nil { |
| 179 | return nil |
| 180 | } |
| 181 | return desc.(*waveObjDesc) |
| 182 | } |
| 183 | |
| 184 | func GetOID(waveObj WaveObj) string { |
| 185 | desc := getWaveObjDesc(waveObj.GetOType()) |
no outgoing calls
no test coverage detected