NathanEckert
NathanEckert
> > If I modify the rules to change to > > Please change your description example to have single config and just reference what is not correct violations to...
> So all you try to do is to make checkstyle produce no violations on code that is formatted by another tool? Sort of, but I would expect to be...
I am not claiming that `checkstyle` is not compliant to google-java-format (as it is a different tools, I don't expect it it to work out of the box). However, I...
> Did you consider google-java-format to have a defect? I did consider it but ruled it out, as https://google.github.io/styleguide/javaguide.html#s4.1-braces does not mention anonymous scope, so implementations are free do to...
I also encountered the same issue on the following file. I am using version `1.18.1-all-deps` ```java public class JavaFormatterExample { public static String veryLongString() { return "Very, very, very, very,...
I am using the same version as you. I created a fully contained project to reproduce the issue: https://github.com/NathanEckert/AWS_crypto_tools_reproducer
We are using the following credentials provider: ```java public class S3CredentialsProviderChain implements AwsCredentialsProvider { private static final Log LOG = LogFactory.getLog(S3CredentialsProviderChain.class); private boolean tryDefaultChain = true; @Override public AwsCredentials resolveCredentials()...
On a side note, why did the size of the JAR more than doubled between 3.13 and 3.14 ?
I added in the description the definition of the `AwsKeyPairConfig`. The solution with the `ObjectMapper` does not work, I already tried it and got: ``` java.lang.IllegalArgumentException: Cannot construct instance of...
I implemented the deserialization manually, though I am curious to hear if not having a no argument constructor is a design choice or a bug