Maxime BOCHON
Maxime BOCHON
Of course changing the API does have impacts. Why would it not be a good idea though? Am I in the right place to ask for a correction of small...
Thank you @andymc12 for the workaround snippet. Actually, I had already done something similar, but using much 3rd-party syntactic sugar: ```java import com.google.common.primitives.Longs; import static com.google.common.base.Strings.nullToEmpty; import static javax.ws.rs.core.HttpHeaders.CONTENT_LENGTH; import...
The type of errors I get is like this: ``` Error: src/app/.../request-builder.ts:338:30 - error TS2569: Type 'IterableIterator' is not an array type or a string type. Use compiler option '--downlevelIteration'...
I get the same error with the proposed change. I think that the compatibility problem comes from the type returned by `values()` which is `IterableIterator`. I did not have time...