(String fullName, byte [] array, int start, int n)
| 173 | } |
| 174 | |
| 175 | private final void |
| 176 | appendFromString(String fullName, byte [] array, int start, int n) |
| 177 | throws TextParseException |
| 178 | { |
| 179 | try { |
| 180 | append(array, start, n); |
| 181 | } |
| 182 | catch (NameTooLongException e) { |
| 183 | throw parseException(fullName, "Name too long"); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | private final void |
| 188 | appendSafe(byte [] array, int start, int n) { |
no test coverage detected