Changes between Initial Version and Version 1 of Ticket #22727, comment 11
- Timestamp:
- 2023-03-27T17:55:20+02:00 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22727, comment 11
initial v1 10 10 > Aaah. Why? ;-) 11 11 12 I feel like I'm missing something here. I've made similar comments elsewhere when all other cases are exhausted, or an Exception cannot be thrown (example: `try {new ByteArrayInputStream("".getBytes(StandardCharsets.UTF_8)).close();} catch (IOException impossible) { /* This should never be hit */ }`). 12 I feel like I'm missing something here. I've made similar comments elsewhere when all other cases are exhausted, or an Exception cannot be thrown (example: `try {new ByteArrayInputStream("".getBytes(StandardCharsets.UTF_8)).close();} catch (IOException impossible) { throw new JosmRuntimeException(impossible); /* This should never be hit */ }`).