This code here:
private static byte[] bytes(int @Nullable... elements) {
(which passes checkstyle)
formats to
private static byte[] bytes(int @Nullable ... elements) {
(note the whitespace before the ...)
which fails checkstyle with:
PemPrivateKeyParser.java:324:59: '...' is preceded with whitespace. [NoWhitespaceBefore]
Related to #435.