(DNSOutput out, Compression c, boolean canonical)
| 112 | } |
| 113 | |
| 114 | void |
| 115 | rrToWire(DNSOutput out, Compression c, boolean canonical) { |
| 116 | Iterator it = strings.iterator(); |
| 117 | while (it.hasNext()) { |
| 118 | byte [] b = (byte []) it.next(); |
| 119 | out.writeCountedString(b); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | } |
nothing calls this directly
no test coverage detected