Pierre-Luc Carmel Biron
Pierre-Luc Carmel Biron
When there are comments inside enum values, Spoon fails to perform a transformation on the type. ```java package org.example; enum Example { ENGLISH( /* boom */ "Hello", "World" ), FRENCH(...
Given the following input: ```java package org.example; interface Example { @Deprecated default void doNotUseMePlease() {} } ``` When performing a transformation on the class (changing the method name to "potato",...
When renaming "a", in this code: ```java package org.example; class Example { void example() { var a = 12345.0 var x = ((Double) a).toString(); } } ``` it gets transformed...
To resolve #236 Work in progress. I will... - add more tests. - implement row expansion using the keyboard. - continue improving "spreadsheet select" so it has most of the...
Same good features as #347, but for 2.0
In my app, when the user clicks on a marker, a promise needs to be resolved before the popup content is rendered by Ember. The problem is that the width...
Flux.cache(0) doesn't replay the terminal signal for late subscribers, contrary to what is stated in the documentation. Here is an example: ``` jshell> var f = Flux.just(1,2,3,4).cache(0).log().doOnTerminate(() -> System.err.println("hello world"))...
It makes it impossible to include both of those maven dependencies directly (i.e.e without some form of repackaging) in a Java 9 modules.
Looking at the code of GuiceInjectableValues, it seems unable to handle string values, which is what you get by default: ```java @Override public Object findInjectableValue( Object valueId, DeserializationContext ctxt, BeanProperty...