Patrick Way
Patrick Way
Hi @yeikel, Looks like there are `DeleteMethodArgument` and `ReorderMethodArguments` recipes. A new recipe for inserting method arguments should be possible given the type, name, and index of the new argument.
Thanks @traceyyoshima, You are correct that there are cases (most often migrations) where the new argument type may not be on the classpath; however, it's also quite possible that classpath...
The [feign-annotation-error-decoder](https://github.com/OpenFeign/feign-annotation-error-decoder) seems to provide a good solution for this issue. Having the ability to decode exceptions by methodKey and status code combined with the ability to construct Exceptions using...
Thanks @ryanjbaxter I will start working on a pull request
Hello @DewaldDeJager, I ended up solving the problem exactly as you have described. The ErrorDecoder below attempts to use the `feign.codec.StringDecoder` for decoding the response body, so I am not...
The BlockStatementTemplateGenerator is building a very large template for the [AccumuloProxy.java](https://github.com/apache/accumulo-proxy/blob/main/src/main/java/org/apache/accumulo/proxy/thrift/AccumuloProxy.java) Source file. There are a large number of sibling classes, each of which is fully templated since BlockStatementTemplateGenerator considers...
Hi @dmbelyaev, At this time MergeYaml only supports merging scalars into sequences, determining the equality of two mappings is required to prevent the recipe from continually re-adding the same sequence...
fixed by #2240
Hi @thomaszub, Thanks for the demo project; I can appreciate the scale of this problem. Looking at the [docs](https://maven.apache.org/plugins/maven-resources-plugin/examples/encoding.html), we may need to consider both sources and resources.
Hi Thomas, Thanks for the PR, Check out the [JavaParser.Builder#charset](https://github.com/openrewrite/rewrite/blob/48b4aa829b349ffde18cc28e273343943bd75f62/rewrite-java/src/main/java/org/openrewrite/java/JavaParser.java#L229) it might simplify things a bit. I'm still unsure how to handle the `EncodingDetectingInputStream` when the charset is intentionally set,...