From 7222e6a84bbb97dc5ccfc4e3dfbb2096b92cbb21 Mon Sep 17 00:00:00 2001 From: Vivek Date: Sat, 6 Jun 2020 14:51:46 +0200 Subject: [PATCH] #528, Corrected white-spaces --- src/main/java/org/json/JSONObject.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/json/JSONObject.java b/src/main/java/org/json/JSONObject.java index 58bf23500..937954442 100644 --- a/src/main/java/org/json/JSONObject.java +++ b/src/main/java/org/json/JSONObject.java @@ -2607,8 +2607,7 @@ private static JSONException wrongValueFormatException( * A map object whose content is copied to this JSONObject. * @return this. */ - - public JSONObject put(Map map) { + public JSONObject put(Map map) { if (map != null && !map.isEmpty()) { for (final Entry e : map.entrySet()) { final Object key = e.getKey();