1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

fix for issue #379

This commit is contained in:
John J. Aylward 2017-11-06 10:28:28 -05:00
parent f16682bf44
commit 4a4b2db8c1
3 changed files with 5 additions and 2 deletions

View file

@ -1844,7 +1844,7 @@ public class JSONObject {
Object valueThis = entry.getValue();
Object valueOther = ((JSONObject)other).get(name);
if(valueThis == valueOther) {
return true;
continue;
}
if(valueThis == null) {
return false;