Peter Streef

Results 10 issues of Peter Streef

When trying to use push with a very basic spring + vaadin application I get constant warnings like these: `2017-04-04 16:33:33.225 WARN 12936 --- [io-8080-exec-10] org.atmosphere.util.IOUtils : More than one...

question
Stale

## What problem are you trying to solve? I was writing a test and encountered an error message that I did not expect: `Error: Call reset() on JavaParser before parsing...

enhancement
parser-java

When using the Gradle plugin, adding or changing a keep* rule in the ProguardTask does not cause the tasks inputs to change and so Gradle does not know it needs...

Using the server setup found [here](https://github.com/rsocket/rsocket-java/issues/987#issuecomment-796176003) and using rsocket-core 1.1.3 my server behaves as expected. If for some reason no acks get delivered during the keep-alive timeout it will restart...

In the following sample the type arugment `` is remove. But this is required by the `.map(this::mapper)` ``` public class Test { void test(){ Stream.of("hi") .map(it -> it == null...

bug
test provided

## What problem are you trying to solve? When multiple cases have the same output they are currently all present, they can be collapsed/concentrated into a single case ## Describe...

enhancement

## What problem are you trying to solve? Pattern matching switch expressions can be used to simplify nested ternaries ## Describe the solution you'd like ``` """ import java.util.Set; import...

enhancement

## What problem are you trying to solve? switch(null) is not supported before Java 18. Adding it to this recipe when using java 18 might be a useful extension. ##...

enhancement

TernaryOperatorsShouldNotBeNested is only implemented for return statements and lambdas, not assignments (or other possible places for ternaries). sample ``` class Test { public void doThing(String a, String b) { String...

enhancement

## What version of OpenRewrite are you using? Moderne SaaS ## How are you running OpenRewrite? Moderne SaaS ## What is the smallest, simplest way to reproduce the problem? ```...

bug