We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891e327 commit 1ba992aCopy full SHA for 1ba992a
src/main/java/com/amadeus/Params.java
@@ -49,7 +49,7 @@ public static Params with(@NonNull String key, Object value) {
49
* @return the Param object, allowing for convenient chaining
50
*/
51
public Params and(@NonNull String key, Object value) {
52
- if(value instanceof List) {
+ if (value instanceof List) {
53
@SuppressWarnings("unchecked") List<String> values = (List<String>) value;
54
put(key, String.join(",", values));
55
} else {
0 commit comments