lpfeup

Results 5 issues of lpfeup

the ```addQueryParams```/```setQueryParams``` methods are assigning the passed argument directly to the class field ```queryParams```. This has unwanted side-effects. Code: [RequestBuilderBase.addQueryParams](https://github.com/AsyncHttpClient/async-http-client/blob/fc7b75048f2cc74e46cd45d1591f1ffa50ac4810/client/src/main/java/org/asynchttpclient/RequestBuilderBase.java#L425) [RequestBuilderBase.setQueryParams](https://github.com/AsyncHttpClient/async-http-client/blob/fc7b75048f2cc74e46cd45d1591f1ffa50ac4810/client/src/main/java/org/asynchttpclient/RequestBuilderBase.java#L439) Example: ```Java List params = new ArrayList(); params.add(new Param("testKey",...

Enhancement
Contributions Welcome!

It would be useful to have a shaded jar with packaged dependencies and relocated to another package to prevent version conflicts (specially because of other dependencies which require a different...

enhancement

`java.lang.VerifyError` is being thrown with the following code example: ```java public class Main2 { public static void main(String[] args) throws InterruptedException { Async.init(); test() .thenRun(() -> System.out.println("DONE")) .exceptionally(t -> {t.printStackTrace();return...

bug

Currently, the Message.Builder class only allows setting a single registration ID. It would be useful to have a method for setting multiple registration IDs at once for multicast messaging. Something...

I noticed that memory was leaking while switching back and forth between pages that included the datepicker. The DOM Node Count in Google Chrome kept going up. I solved it...