()
| 289 | |
| 290 | /* Creates a new Header identical to the current one */ |
| 291 | public Object |
| 292 | clone() { |
| 293 | Header h = new Header(); |
| 294 | h.id = id; |
| 295 | h.flags = flags; |
| 296 | System.arraycopy(counts, 0, h.counts, 0, counts.length); |
| 297 | return h; |
| 298 | } |
| 299 | |
| 300 | } |
no outgoing calls
no test coverage detected