(String content, String to)
| 16 | public final String to; |
| 17 | |
| 18 | public Message(String content, String to) { |
| 19 | this.content = content; |
| 20 | this.to = to; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | @Export(name = "init") |
nothing calls this directly
no outgoing calls
no test coverage detected