Daniel Subelman

Results 12 comments of Daniel Subelman

I think you can leverage the new methods `isSealed()` and `getPermittedSubclasses()` added to `Class` in JDK 17: ``` assertTrue(Super.class.isSealed()); assertFalse(Sub.class.isSealed()); assertTrue(Sub.class.getSuperclass().isSealed()); assertArrayEquals(Super.class.getPermittedSubclasses(), new Class[]{Sub.class}); ```

I had the same issue a few months ago and posted a [question ](https://stackoverflow.com/questions/70898918/uncalled-private-method-in-an-interface) in Stack Overflow with a similar example.

Convergence issue solved. Strata v2.12.36 declares Joda-Beans v2.10.0. Both versions of Strata and Joda-Beans declare the same version of Joda-Convert: v2.2.3.

I just tested the example shown in the original issue using v11.2.1 and still throws the same `IndexOutOfBoundsException`. @credmond , @abhinayagarwal, what was solved in v11.2.1?

I'm having the same issue with: Version: 2023-09 (4.29.0) Build id: 20230907-1323 Any news about this bug?

@benmccann thanks for the update. When are you planning to release the new version?

@benmccann thanks again for the rapid response.

I'm having the same issue with `readInt()`. Both methods, `readUTF()` and `readInt()`, are not final. However, for example, `defaultReadObject()` is also not final, but it doesn't trigger any bug alert....