Aurélien Mino

Results 31 issues of Aurélien Mino

```java String foo; Long.parseLong(foo = "123"); ``` is changed to the following code that doesn't compile anymore: ```java Long.parseLong(foo = "123"); ```

bug
uses-dataflow

https://rules.sonarsource.com/java/RSPEC-5612 Could transform e.g. `collection.foreach(item -> ...)` loop to `for(item : collection) { ...}` if lamba has too much lines.

recipe

See https://www.jetbrains.com/help/idea/inline.html#examples Should support also inlining interface with class implementation.

recipe

Currently openrewrite and its official plugins are only tested with unit tests. I think it would be really beneficial to the project if recipes were tested on a daily basis...

enhancement

It's a bit meta, but I would be useful to have a maven recipe that allows adding a specific recipe automatically, conditioned by the presence of a specific dependency in...

enhancement
recipe

Currently only a few scripts have an explicit [@license](https://github.com/murdos/musicbrainz-userscripts/search?q=%27%40license%27&unscoped_q=%27%40license%27) (or even [@licen**c**e](https://github.com/murdos/musicbrainz-userscripts/search?q=%27%40licence%27&unscoped_q=%27%40licence%27) :-)), and we have a mix of X11 and GPL (without explicit version: 2? 3?). I think it...

Source: ```java public LoggingConfiguration(@Value("${spring.application.name}") String appName, @Value("${server.port}") String serverPort, JHipsterProperties jHipsterProperties, ObjectMapper mapper) throws JsonProcessingException { // ... } ``` Formatted with prettier 0.4.0: ```java public LoggingConfiguration( @Value("${spring.application.name}") String appName,...

theme: Re-Writer
area: enhancement :wrench:

Spring Data JDBC supports one-to-one and one-to-many (either as Set, List or Map) relationships: https://docs.spring.io/spring-data/jdbc/docs/current/reference/html/#jdbc.entity-persistence.types It would be really useful to also have this feature with R2DBC.

status: pending-design-work
status: waiting-for-triage

Fixes #171 It should be noted that the behavior of `xyz.in=someValue,otherValue` in REST query params is not supported (see https://github.com/micronaut-projects/micronaut-core/issues/2157), so instead `xyz.in=someValue&xyz.in=otherValue` should be used

enhancement 💎
hacktoberfest-accepted

This will allow custom (ContextAware)Randomizers or custom field populators to access registered randomizers, preventing them the pain of reimplementing registries loading.