(Record r1, Record r2)
| 349 | } |
| 350 | |
| 351 | private static boolean |
| 352 | sameSet(Record r1, Record r2) { |
| 353 | return (r1.getRRsetType() == r2.getRRsetType() && |
| 354 | r1.getDClass() == r2.getDClass() && |
| 355 | r1.getName().equals(r2.getName())); |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * Returns an array containing all records in the given section grouped into |
no test coverage detected