(bundle MIMEMap)
| 238 | } |
| 239 | |
| 240 | func ensure(bundle MIMEMap) MIMEMap { |
| 241 | if bundle == nil { |
| 242 | bundle = make(MIMEMap) |
| 243 | } |
| 244 | return bundle |
| 245 | } |
| 246 | |
| 247 | func merge(a MIMEMap, b MIMEMap) MIMEMap { |
| 248 | if len(b) == 0 { |
no outgoing calls
no test coverage detected