(int field)
| 230 | } |
| 231 | |
| 232 | void |
| 233 | decCount(int field) { |
| 234 | if (counts[field] == 0) |
| 235 | throw new IllegalStateException("DNS section count cannot " + |
| 236 | "be decremented"); |
| 237 | counts[field]--; |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Retrieves the record count for the given section |
no outgoing calls
no test coverage detected