(byte [] array, int start, int n)
| 185 | } |
| 186 | |
| 187 | private final void |
| 188 | appendSafe(byte [] array, int start, int n) { |
| 189 | try { |
| 190 | append(array, start, n); |
| 191 | } |
| 192 | catch (NameTooLongException e) { |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Create a new name from a string and an origin. This does not automatically |
no test coverage detected