Skip to content

Commit 1ba992a

Browse files
committed
add whitespace around if
1 parent 891e327 commit 1ba992a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/amadeus/Params.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static Params with(@NonNull String key, Object value) {
4949
* @return the Param object, allowing for convenient chaining
5050
*/
5151
public Params and(@NonNull String key, Object value) {
52-
if(value instanceof List) {
52+
if (value instanceof List) {
5353
@SuppressWarnings("unchecked") List<String> values = (List<String>) value;
5454
put(key, String.join(",", values));
5555
} else {

0 commit comments

Comments
 (0)